From 2cb6099b6dd90e65923bf9f06647efc40b6e6267 Mon Sep 17 00:00:00 2001 From: G Johansson Date: Sat, 21 Jun 2025 16:22:38 +0000 Subject: [PATCH] Remove update listener error for now --- homeassistant/config_entries.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/homeassistant/config_entries.py b/homeassistant/config_entries.py index a53a01bf100..89f4429b031 100644 --- a/homeassistant/config_entries.py +++ b/homeassistant/config_entries.py @@ -3180,15 +3180,7 @@ class ConfigFlow(ConfigEntryBaseFlow): :param reload_even_if_entry_is_unchanged: set this to `False` if the entry should not be reloaded if it is unchanged - - Using this method in combination with `update_listeners` is not supported. - If the entry has `update_listeners`, this method will raise a ValueError. """ - if entry.update_listeners: - raise ValueError( - "Using async_update_reload_and_abort in combination with " - "update_listeners is not supported" - ) if data_updates is not UNDEFINED: if data is not UNDEFINED: raise ValueError("Cannot set both data and data_updates")