From cb206e044672deb7f681d2a3ae0be03762854fc0 Mon Sep 17 00:00:00 2001 From: Aaron Bach Date: Thu, 4 Jun 2020 08:28:39 -0600 Subject: [PATCH] Remove unused config flow step --- homeassistant/components/tile/config_flow.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/homeassistant/components/tile/config_flow.py b/homeassistant/components/tile/config_flow.py index 15ac70eeb2c..9dd80b863aa 100644 --- a/homeassistant/components/tile/config_flow.py +++ b/homeassistant/components/tile/config_flow.py @@ -28,10 +28,6 @@ class TileFlowHandler(config_entries.ConfigFlow, domain=DOMAIN): step_id="user", data_schema=self.data_schema, errors=errors or {} ) - async def async_step_import(self, import_config): - """Import a config entry from configuration.yaml.""" - return await self.async_step_user(import_config) - async def async_step_user(self, user_input=None): """Handle the start of the config flow.""" if not user_input: