From 81e1c4459228361cd335789527437f0a1939f873 Mon Sep 17 00:00:00 2001 From: Aaron Bach Date: Thu, 12 Aug 2021 12:18:10 -0700 Subject: [PATCH] Remove unused import step in OpenUV config flow (#54554) --- homeassistant/components/openuv/config_flow.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/homeassistant/components/openuv/config_flow.py b/homeassistant/components/openuv/config_flow.py index 3595b124053..d8652ae09c5 100644 --- a/homeassistant/components/openuv/config_flow.py +++ b/homeassistant/components/openuv/config_flow.py @@ -51,10 +51,6 @@ class OpenUvFlowHandler(config_entries.ConfigFlow, domain=DOMAIN): errors=errors if errors else {}, ) - async def async_step_import(self, import_config: dict[str, Any]) -> FlowResult: - """Import a config entry from configuration.yaml.""" - return await self.async_step_user(import_config) - async def async_step_user( self, user_input: dict[str, Any] | None = None ) -> FlowResult: