hass-core/homeassistant/components/tplink/config_flow.py
Franck Nijhof c68b259bd3
Cleanup of unused connection_class logic (#49865)
Co-authored-by: Joakim Sørensen <joasoe@gmail.com>
2021-04-29 23:12:58 +02:00

11 lines
281 B
Python

"""Config flow for TP-Link."""
from homeassistant.helpers import config_entry_flow
from .common import async_get_discoverable_devices
from .const import DOMAIN
config_entry_flow.register_discovery_flow(
DOMAIN,
"TP-Link Smart Home",
async_get_discoverable_devices,
)