From e00e147ecd11909b4e7927aafb710148bfa2e5a9 Mon Sep 17 00:00:00 2001 From: Andre Basche Date: Sat, 1 Jul 2023 16:28:18 +0200 Subject: [PATCH] Bump version --- pyhon/appliance.py | 4 +--- setup.py | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/pyhon/appliance.py b/pyhon/appliance.py index 40c2947..a61a362 100644 --- a/pyhon/appliance.py +++ b/pyhon/appliance.py @@ -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: diff --git a/setup.py b/setup.py index 7d54331..aff5f75 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ with open("README.md", "r") as f: setup( name="pyhOn", - version="0.14.6", + version="0.14.7", author="Andre Basche", description="Control hOn devices with python", long_description=long_description,