Skip to content

Commit

Permalink
Merge branch 'main' into feature/addBinaryBoolType
Browse files Browse the repository at this point in the history
  • Loading branch information
osoken authored Nov 14, 2023
2 parents a6d7db9 + 498cfc6 commit ddf28ba
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions birdxplorer/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -502,6 +502,19 @@ class NotesBelievable(str, Enum):
believable_by_many = "BELIEVABLE_BY_MANY"
empty = ""

class NotesClassification(str, Enum):
not_misleading = "NOT_MISLEADING"
misinformed_or_potentially_misleading = "MISINFORMED_OR_POTENTIALLY_MISLEADING"

class NotesHarmful(str, Enum):
little_harm = "LITTLE_HARM"
considerable_harm = "CONSIDERABLE_HARM"
empty = ""

class NotesValidationDifficulty(str, Enum):
easy = "EASY"
challenging = "CHALLENGING"
empty = ""

class NotesClassification(str, Enum):
not_misleading = "NOT_MISLEADING"
Expand Down

0 comments on commit ddf28ba

Please sign in to comment.