Compare commits

..

2 Commits

Author SHA1 Message Date
FerronN e432ee7c3a
Merge de8d2a7b0c into 99d25bfd56 2025-08-16 15:29:36 +00:00
schizza de8d2a7b0c
Update const.py 2025-08-16 17:29:22 +02:00
1 changed files with 3 additions and 22 deletions

View File

@ -158,27 +158,6 @@ DISABLED_BY_DEFAULT: Final = [
]
class UnitOfDir(StrEnum):
"""Wind direrction azimut."""
NNE = "nne"
NE = "ne"
ENE = "ene"
E = "e"
ESE = "ese"
SE = "se"
SSE = "sse"
S = "s"
SSW = "ssw"
SW = "sw"
WSW = "wsw"
W = "w"
WNW = "wnw"
NW = "nw"
NNW = "nnw"
N = "n"
class UnitOfDir(StrEnum):
"""Wind direrction azimut."""
@ -223,8 +202,10 @@ class UnitOfBat(StrEnum):
LOW = "low"
NORMAL = "normal"
UNKNOWN = "unknown"
BATLEVEL: list[UnitOfBat] = [
BATTERY_LEVEL: list[UnitOfBat] = [
UnitOfBat.LOW,
UnitOfBat.NORMAL,
UnitOfBat.UNKNOWN,
]