mirror of
https://github.com/Andre0512/pyhOn.git
synced 2026-06-20 15:26:18 +02:00
Fix missing program name Andre0512/hon#188
This commit is contained in:
+3
-7
@@ -93,13 +93,9 @@ class Hon:
|
||||
if appliance.mac_address == "":
|
||||
return
|
||||
try:
|
||||
await asyncio.gather(
|
||||
*[
|
||||
appliance.load_attributes(),
|
||||
appliance.load_commands(),
|
||||
appliance.load_statistics(),
|
||||
]
|
||||
)
|
||||
await appliance.load_commands()
|
||||
await appliance.load_attributes()
|
||||
await appliance.load_statistics()
|
||||
except (KeyError, ValueError, IndexError) as error:
|
||||
_LOGGER.exception(error)
|
||||
_LOGGER.error("Device data - %s", appliance_data)
|
||||
|
||||
Reference in New Issue
Block a user