From 1c6aac69d28215f7b38b8b3cecb62a0d09cf4611 Mon Sep 17 00:00:00 2001 From: osoken Date: Wed, 15 Nov 2023 00:00:35 +0900 Subject: [PATCH] fix(models): remove redundant class definition --- birdxplorer/models.py | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/birdxplorer/models.py b/birdxplorer/models.py index 34c28c3..82adfd7 100644 --- a/birdxplorer/models.py +++ b/birdxplorer/models.py @@ -502,19 +502,6 @@ 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"