1
0
mirror of https://github.com/home-assistant/core.git synced 2026-02-23 11:26:46 +00:00
Files
core/homeassistant/components/switcher_kis/config_flow.py

11 lines
279 B
Python

"""Config flow for Switcher integration."""
from __future__ import annotations
from homeassistant.helpers import config_entry_flow
from .const import DOMAIN
from .utils import async_has_devices
config_entry_flow.register_discovery_flow(DOMAIN, "Switcher", async_has_devices)