core/homeassistant/components/wemo/config_flow.py

17 lines
447 B
Python
Raw Normal View History

"""Config flow for Wemo."""
import pywemo
2021-12-20 00:09:30 +00:00
from homeassistant.core import HomeAssistant
from homeassistant.helpers import config_entry_flow
from .const import DOMAIN
2021-12-20 00:09:30 +00:00
async def _async_has_devices(hass: HomeAssistant) -> bool:
"""Return if there are devices that can be discovered."""
return bool(await hass.async_add_executor_job(pywemo.discover_devices))
config_entry_flow.register_discovery_flow(DOMAIN, "Wemo", _async_has_devices)