We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d158412 commit 54a896eCopy full SHA for 54a896e
custom_components/huesyncbox/config_flow.py
@@ -20,6 +20,7 @@
20
CONF_UNIQUE_ID,
21
)
22
from homeassistant.exceptions import HomeAssistantError
23
+from homeassistant.helpers.service_info.zeroconf import ZeroconfServiceInfo
24
25
from . import HueSyncBoxConfigEntry
26
from .const import DEFAULT_PORT, DOMAIN, REGISTRATION_ID
@@ -197,7 +198,7 @@ async def async_step_configure(
197
198
199
200
async def async_step_zeroconf(
- self, discovery_info: zeroconf.ZeroconfServiceInfo
201
+ self, discovery_info: ZeroconfServiceInfo
202
) -> ConfigFlowResult:
203
"""Handle zeroconf discovery."""
204
_LOGGER.debug("async_step_zeroconf, %s", discovery_info)
0 commit comments