This commit is contained in:
Mario Ramundo 2024-10-20 23:05:39 +02:00 committed by GitHub
commit 032765a91b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -92,8 +92,8 @@ class Hon:
if appliance.mac_address == "": if appliance.mac_address == "":
return return
try: try:
await appliance.load_commands()
await appliance.load_attributes() await appliance.load_attributes()
await appliance.load_commands()
await appliance.load_statistics() await appliance.load_statistics()
except (KeyError, ValueError, IndexError) as error: except (KeyError, ValueError, IndexError) as error:
_LOGGER.exception(error) _LOGGER.exception(error)

View file

@ -7,7 +7,7 @@ with open("README.md", "r", encoding="utf-8") as f:
setup( setup(
name="pyhOn", name="pyhOn",
version="0.17.5", version="0.17.6",
author="Andre Basche", author="Andre Basche",
description="Control hOn devices with python", description="Control hOn devices with python",
long_description=long_description, long_description=long_description,