Skip to content

Commit 263ce0a

Browse files
authored
Merge pull request #2 from productive-dev/master
Adds docstrings
2 parents 94fa8f3 + 4496a82 commit 263ce0a

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

constants.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44

55

66
class SimColor:
7+
"""
8+
Tuples corresponding to RGB colors
9+
"""
710
LIGHT_GREY = (240, 240, 240)
811
DARK_GREY = (30, 30, 50)
912
BLACK = (0, 0, 0)
@@ -14,6 +17,9 @@ class SimColor:
1417

1518

1619
class Disease:
20+
"""
21+
Constants for disease
22+
"""
1723
INFECTED = 0
1824
RECOVERED = 1
1925
UNEXPOSED = 2

0 commit comments

Comments
 (0)