fixed build

This commit is contained in:
Vadym Melnychuk 2023-07-11 17:40:04 +03:00
parent 55c43db3a6
commit a9fd05f3f5

View File

@ -5,4 +5,6 @@ from pyhon.appliances.base import ApplianceBase
class Appliance(ApplianceBase):
def attributes(self, data: Dict[str, Any]) -> Dict[str, Any]:
data = super().attributes(data)
data["active"] = data.get("onOffStatus") == 1
data["active"] = data["parameters"]["onOffStatus"] == "1"
return data