diff --git a/homeassistant/components/upnp/__init__.py b/homeassistant/components/upnp/__init__.py index 265f68eaac0..f70fbcc4d20 100644 --- a/homeassistant/components/upnp/__init__.py +++ b/homeassistant/components/upnp/__init__.py @@ -103,7 +103,7 @@ async def async_setup(hass: HomeAssistantType, config: ConfigType): # config flow async def async_setup_entry(hass: HomeAssistantType, config_entry: ConfigEntry): - """Set up a bridge from a config entry.""" + """Set up UPnP/IGD-device from a config entry.""" ensure_domain_data(hass) data = config_entry.data diff --git a/homeassistant/components/upnp/config_flow.py b/homeassistant/components/upnp/config_flow.py index 178faafb5f7..885f2f64211 100644 --- a/homeassistant/components/upnp/config_flow.py +++ b/homeassistant/components/upnp/config_flow.py @@ -28,7 +28,7 @@ def ensure_domain_data(hass): @config_entries.HANDLERS.register(DOMAIN) class UpnpFlowHandler(data_entry_flow.FlowHandler): - """Handle a Hue config flow.""" + """Handle a UPnP/IGD config flow.""" VERSION = 1 CONNECTION_CLASS = config_entries.CONN_CLASS_LOCAL_POLL