From 2236f8cd07558a6b832c2ceaa9001c74590c78cd Mon Sep 17 00:00:00 2001 From: DeerMaximum <43999966+DeerMaximum@users.noreply.github.com> Date: Thu, 8 Jan 2026 14:44:50 +0000 Subject: [PATCH] Fix typo in NINA config flow (#160523) --- homeassistant/components/nina/config_flow.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/nina/config_flow.py b/homeassistant/components/nina/config_flow.py index d26c2505a18..42b68a4c76a 100644 --- a/homeassistant/components/nina/config_flow.py +++ b/homeassistant/components/nina/config_flow.py @@ -256,7 +256,7 @@ class OptionsFlowHandler(OptionsFlowWithReload): if slot_id > user_input[CONF_MESSAGE_SLOTS] ] - removed_entites_area = [ + removed_entities_area = [ f"{cfg_region}-{slot_id}" for slot_id in range(1, self.data[CONF_MESSAGE_SLOTS] + 1) for cfg_region in self.data[CONF_REGIONS] @@ -265,7 +265,7 @@ class OptionsFlowHandler(OptionsFlowWithReload): for entry in entries: for entity_uid in list( - set(removed_entities_slots + removed_entites_area) + set(removed_entities_slots + removed_entities_area) ): if entry.unique_id == entity_uid: entity_registry.async_remove(entry.entity_id)