Move upnp imports at top-level (#29083)

This commit is contained in:
Quentame 2019-11-26 00:37:03 +01:00 committed by Paulus Schoutsen
parent 29e2201446
commit 5015993f30
3 changed files with 12 additions and 19 deletions

View file

@ -1,11 +1,10 @@
"""Config flow for UPNP."""
from homeassistant.helpers import config_entry_flow
from homeassistant import config_entries
from homeassistant.helpers import config_entry_flow
from .const import DOMAIN
from .device import Device
config_entry_flow.register_discovery_flow(
DOMAIN, "UPnP/IGD", Device.async_discover, config_entries.CONN_CLASS_LOCAL_POLL
)