Bump version

This commit is contained in:
Andre Basche 2023-07-01 16:28:18 +02:00
parent 26bc35c8a6
commit e00e147ecd
2 changed files with 2 additions and 4 deletions

View file

@ -170,9 +170,7 @@ class HonAppliance:
async def load_attributes(self) -> None:
attributes = await self.api.load_attributes(self)
for name, values in (
attributes.pop("shadow", {}).get("parameters", {}).items()
):
for name, values in attributes.pop("shadow", {}).get("parameters", {}).items():
if name in self._attributes.get("parameters", {}):
self._attributes["parameters"][name].update(values)
else: