fix(message.py): fix error on TELEMETRY msg

This commit is contained in:
2026-03-05 22:28:42 +01:00
parent 3d5a1e95da
commit e8ef578141

View File

@@ -226,6 +226,8 @@ class Message:
match category:
case Category.CONTROL:
action = ControlAction(action_str)
case Category.TELEMETRY:
action = TelemetryAction(action_str)
case _:
raise ValueError(f"Unknown category: {category}")