diff --git a/satrs-example/pyclient/common.py b/satrs-example/pyclient/common.py index efc558d..81df032 100644 --- a/satrs-example/pyclient/common.py +++ b/satrs-example/pyclient/common.py @@ -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