formatting

This commit is contained in:
Vadym Melnychuk 2023-07-11 17:49:49 +03:00
parent a9fd05f3f5
commit 7ac2908671
2 changed files with 3 additions and 3 deletions

View File

@ -7,4 +7,4 @@ class Appliance(ApplianceBase):
data = super().attributes(data)
data["active"] = data["parameters"]["onOffStatus"] == "1"
return data
return data

View File

@ -75,14 +75,14 @@ class HonCommand:
for name, parameter in self._parameters.items():
result.setdefault(parameter.group, {})[name] = parameter.intern_value
return result
@property
def mandatory_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():
if parameter.mandatory:
result.setdefault(parameter.group, {})[name] = parameter.intern_value
return result
return result
@property
def parameter_value(self) -> Dict[str, Union[str, float]]: