Fix missing program

This commit is contained in:
Andre Basche 2023-05-07 00:47:08 +02:00
parent 22cbd7474a
commit ccff32e6c1
3 changed files with 10 additions and 4 deletions

View file

@ -12,7 +12,10 @@ class HonParameterProgram(HonParameterEnum):
def __init__(self, key: str, command: "HonCommand", group: str) -> None:
super().__init__(key, {}, group)
self._command = command
self._value: str = command.category
if "PROGRAM" in command.category:
self._value: str = command.category.split(".")[-1].lower()
else:
self._value: str = command.category
self._programs: Dict[str, "HonCommand"] = command.categories
self._typology: str = "enum"