mirror of
https://github.com/Andre0512/pyhOn.git
synced 2024-11-27 16:00:52 +01:00
Fix missing program name Andre0512/hon#188
This commit is contained in:
parent
53691e383e
commit
bdf9d31be3
10
pyhon/hon.py
10
pyhon/hon.py
@ -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)
|
||||
|
@ -45,7 +45,7 @@ class HonParameterProgram(HonParameterEnum):
|
||||
for name, parameter in self._programs.items():
|
||||
if "iot_" in name:
|
||||
continue
|
||||
if parameter.parameters.get("prCode"):
|
||||
if not parameter.parameters.get("prCode"):
|
||||
continue
|
||||
if (fav := parameter.parameters.get("favourite")) and fav.value == "1":
|
||||
continue
|
||||
|
Loading…
Reference in New Issue
Block a user