Skip to content

Commit

Permalink
feat: sort types
Browse files Browse the repository at this point in the history
  • Loading branch information
Nastaliss committed Apr 1, 2024
1 parent ceec8b5 commit 3acab3b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/db/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@ def __repr__(self):


class ObservationType(str, enum.Enum):
fire: str = "fire"
smoke: str = "smoke"
clouds: str = "clouds"
sky: str = "sky"
fire: str = "fire"
fog: str = "fog"
sky: str = "sky"
smoke: str = "smoke"

class Annotations(Base):
__tablename__ = "annotations"
Expand Down

0 comments on commit 3acab3b

Please sign in to comment.