Skip to content

Commit 64a389e

Browse files
Fixing capilatisation of Enum members
1 parent fcb1caa commit 64a389e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

classes/episode/episode_type.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ class EpisodeType(Enum):
1616
"""
1717

1818
FOBT = (11350, "FOBT")
19-
Fobt = (11350, "FOBT Screening")
20-
BowelScope = (200640, "Bowel Scope")
21-
Surveillance = (11351, "Surveillance")
19+
FOBT_SCREENING = (11350, "FOBT Screening")
20+
BOWEL_SCOPE = (200640, "Bowel Scope")
21+
SURVEILLANCE = (11351, "Surveillance")
2222
LYNCH_SURVEILLANCE = (305633, "Lynch Surveillance")
23-
Lynch = (305633, "Lynch")
23+
LYNCH = (305633, "Lynch")
2424

2525
def __init__(self, valid_value_id, description):
2626
"""

0 commit comments

Comments
 (0)