Use parameter optional

This commit is contained in:
Andre Basche 2023-04-23 20:14:52 +02:00
parent 9594b9ebd8
commit d4c6ccdce3
3 changed files with 10 additions and 3 deletions

View file

@ -1,4 +1,5 @@
import importlib
import logging
from contextlib import suppress
from typing import Optional, Dict, Any
from typing import TYPE_CHECKING
@ -11,6 +12,9 @@ if TYPE_CHECKING:
from pyhon import HonAPI
_LOGGER = logging.getLogger(__name__)
class HonAppliance:
def __init__(
self, api: Optional["HonAPI"], info: Dict[str, Any], zone: int = 0
@ -183,7 +187,10 @@ class HonAppliance:
async def load_attributes(self):
self._attributes = await self._api.load_attributes(self)
for name, values in self._attributes.pop("shadow").get("parameters").items():
_LOGGER.warning(self._attributes)
for name, values in (
self._attributes.pop("shadow", {}).get("parameters", {}).items()
):
self._attributes.setdefault("parameters", {})[name] = values["parNewVal"]
async def load_statistics(self):