From 05ddd773ff64237f9cb2eca9a9b6dd998868b95b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Tue, 29 Mar 2022 10:24:15 +0300 Subject: [PATCH] Fix _abort_if_unique_id_configured updates type hint (#68730) --- homeassistant/config_entries.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/config_entries.py b/homeassistant/config_entries.py index e10574bdc4a..933cebebcf5 100644 --- a/homeassistant/config_entries.py +++ b/homeassistant/config_entries.py @@ -1230,7 +1230,7 @@ class ConfigFlow(data_entry_flow.FlowHandler): @callback def _abort_if_unique_id_configured( self, - updates: dict[Any, Any] | None = None, + updates: dict[str, Any] | None = None, reload_on_update: bool = True, ) -> None: """Abort if the unique ID is already configured."""