From a3f8b7653728759f3b771fff470d37b9fdabeca6 Mon Sep 17 00:00:00 2001 From: Erik Montnemery Date: Wed, 7 Oct 2020 23:49:29 +0200 Subject: [PATCH] Make async_step_discovery default for MQTT config flows (#41414) --- homeassistant/config_entries.py | 1 + 1 file changed, 1 insertion(+) diff --git a/homeassistant/config_entries.py b/homeassistant/config_entries.py index 84676501990..e8c01e3f80a 100644 --- a/homeassistant/config_entries.py +++ b/homeassistant/config_entries.py @@ -1006,6 +1006,7 @@ class ConfigFlow(data_entry_flow.FlowHandler): async_step_hassio = async_step_discovery async_step_homekit = async_step_discovery + async_step_mqtt = async_step_discovery async_step_ssdp = async_step_discovery async_step_zeroconf = async_step_discovery