1
0
Fork 0
mirror of https://github.com/Andre0512/pyhOn.git synced 2025-05-18 17:14:35 -04:00

Fix for fridge program names

This commit is contained in:
Andre Basche 2023-05-22 01:07:55 +02:00
parent ecbf438889
commit eea79e28b9
4 changed files with 13 additions and 5 deletions

View file

@ -71,7 +71,7 @@ class HonCommand:
def parameter_groups(self) -> Dict[str, Dict[str, Union[str, float]]]:
result: Dict[str, Dict[str, Union[str, float]]] = {}
for name, parameter in self._parameters.items():
result.setdefault(parameter.group, {})[name] = parameter.value
result.setdefault(parameter.group, {})[name] = parameter.intern_value
return result
@property