Skip to content

Commit

Permalink
Hyphen to underscore in Enums (#2756)
Browse files Browse the repository at this point in the history
  • Loading branch information
amjithtitus09 authored Jan 20, 2025
1 parent ebdf501 commit d3c263a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions care/emr/resources/allergy_intolerance/spec.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class VerificationStatusChoices(str, Enum):
presumed = "presumed"
confirmed = "confirmed"
refuted = "refuted"
entered_in_error = "entered-in-error"
entered_in_error = "entered_in_error"


class CategoryChoices(str, Enum):
Expand All @@ -36,7 +36,7 @@ class CategoryChoices(str, Enum):
class CriticalityChoices(str, Enum):
low = "low"
high = "high"
unable_to_assess = "unable-to-assess"
unable_to_assess = "unable_to_assess"


class AllergyIntoleranceOnSetSpec(EMRResource):
Expand Down

0 comments on commit d3c263a

Please sign in to comment.