You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/valuesets/datamodel/valuesets.py
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1418,7 +1418,7 @@ class ProcessingStatus(RichEnum):
1418
1418
"CANCELLED": {'description': 'Processing cancelled by user'},
1419
1419
}
1420
1420
1421
-
class BiosaftyLevelEnum(RichEnum):
1421
+
class BiosafetyLevelEnum(RichEnum):
1422
1422
"""
1423
1423
Biosafety levels (BSL) defining containment requirements for biological agents
1424
1424
"""
@@ -1429,7 +1429,7 @@ class BiosaftyLevelEnum(RichEnum):
1429
1429
BSL4 = "BSL4"
1430
1430
1431
1431
# Set metadata after class creation to avoid it becoming an enum member
1432
-
BiosaftyLevelEnum._metadata = {
1432
+
BiosafetyLevelEnum._metadata = {
1433
1433
"BSL1": {'description': 'Suitable for well-characterized agents not known to consistently cause disease in healthy adults', 'meaning': 'SNOMED:409600007'},
1434
1434
"BSL2": {'description': 'Suitable for agents that pose moderate hazards to personnel and the environment', 'meaning': 'SNOMED:409603009'},
1435
1435
"BSL3": {'description': 'Suitable for indigenous or exotic agents that may cause serious or potentially lethal disease through inhalation', 'meaning': 'SNOMED:409604003'},
0 commit comments