Skip to content

Commit

Permalink
Merge pull request #3 from Moustachauve/change-unknown-none
Browse files Browse the repository at this point in the history
Change unknown status value to be None
  • Loading branch information
Moustachauve authored Jan 30, 2024
2 parents 3015723 + cffb5e4 commit f9d5ecf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/technove/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
class Status(Enum):
"""Describes the status of a TechnoVE station."""

UNKNOWN = "unknown"
UNKNOWN = None
UNPLUGGED = "unplugged"
PLUGGED_WAITING = "plugged_waiting"
PLUGGED_CHARGING = "plugged_charging"
Expand Down

0 comments on commit f9d5ecf

Please sign in to comment.