mirror of
https://github.com/Andre0512/pyhOn.git
synced 2025-05-13 14:44:28 -04:00
Make 'code' attribute optional, fix hon#51
This commit is contained in:
parent
b5af81b744
commit
af4fbdd8cd
3 changed files with 17 additions and 8 deletions
21
pyhon/hon.py
21
pyhon/hon.py
|
@ -1,4 +1,5 @@
|
|||
import asyncio
|
||||
import logging
|
||||
from types import TracebackType
|
||||
from typing import List, Optional, Dict, Any, Type
|
||||
|
||||
|
@ -8,6 +9,8 @@ from typing_extensions import Self
|
|||
from pyhon import HonAPI, exceptions
|
||||
from pyhon.appliance import HonAppliance
|
||||
|
||||
_LOGGER = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class Hon:
|
||||
def __init__(
|
||||
|
@ -70,13 +73,17 @@ class Hon:
|
|||
appliance = HonAppliance(self._api, appliance_data, zone=zone)
|
||||
if appliance.mac_address == "":
|
||||
return
|
||||
await asyncio.gather(
|
||||
*[
|
||||
appliance.load_attributes(),
|
||||
appliance.load_commands(),
|
||||
appliance.load_statistics(),
|
||||
]
|
||||
)
|
||||
try:
|
||||
await asyncio.gather(
|
||||
*[
|
||||
appliance.load_attributes(),
|
||||
appliance.load_commands(),
|
||||
appliance.load_statistics(),
|
||||
]
|
||||
)
|
||||
except (KeyError, ValueError, IndexError) as error:
|
||||
_LOGGER.exception(error)
|
||||
_LOGGER.error(f"Device data - %s", appliance_data)
|
||||
self._appliances.append(appliance)
|
||||
|
||||
async def setup(self) -> None:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue