some enum fixes

This commit is contained in:
Robin Müller 2023-02-16 10:09:02 +01:00
parent 58544fac7a
commit d4377860c6
No known key found for this signature in database
GPG Key ID: BE6480244DFE612C

View File

@ -8,9 +8,9 @@ EXAMPLE_PUS_APID = 0x02
class EventSeverity(enum.IntEnum):
INFO = (0,)
LOW = (1,)
MEDIUM = (2,)
INFO = 0
LOW = 1
MEDIUM = 2
HIGH = 3