Fix error for zone devices

This commit is contained in:
Andre Basche 2023-04-15 21:58:20 +02:00
parent f54b7b2dbf
commit a957d7ac0f
4 changed files with 8 additions and 3 deletions

View file

@ -72,6 +72,10 @@ class HonAppliance:
@property
def mac_address(self) -> str:
return self.info.get("macAddress", "")
@property
def unique_id(self) -> str:
return self._check_name_zone("macAddress", frontend=False)
@property