1
mirror of https://github.com/home-assistant/core synced 2024-08-02 23:40:32 +02:00

Use dataclass properties in lookin discovery (#60585)

Co-authored-by: epenet <epenet@users.noreply.github.com>
This commit is contained in:
epenet 2021-11-30 10:16:06 +01:00 committed by GitHub
parent 2f79760fb4
commit 071296865b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,8 +31,8 @@ class LookinFlowHandler(config_entries.ConfigFlow, domain=DOMAIN):
self, discovery_info: zeroconf.ZeroconfServiceInfo
) -> FlowResult:
"""Start a discovery flow from zeroconf."""
uid: str = discovery_info[zeroconf.ATTR_HOSTNAME][: -len(".local.")]
host: str = discovery_info[zeroconf.ATTR_HOST]
uid: str = discovery_info.hostname[: -len(".local.")]
host: str = discovery_info.host
await self.async_set_unique_id(uid.upper())
self._abort_if_unique_id_configured(updates={CONF_HOST: host})