Simplify config_entries entity registry filter (#115678)

This commit is contained in:
J. Nick Koston 2024-04-17 09:42:23 -05:00 committed by GitHub
parent 7a67304301
commit f62a3a7176
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 4 deletions

View File

@ -2609,14 +2609,12 @@ def _handle_entry_updated_filter(
Only handle changes to "disabled_by".
If "disabled_by" was CONFIG_ENTRY, reload is not needed.
"""
if (
return not (
event_data["action"] != "update"
or "disabled_by" not in event_data["changes"]
or event_data["changes"]["disabled_by"]
is entity_registry.RegistryEntryDisabler.CONFIG_ENTRY
):
return False
return True
)
async def support_entry_unload(hass: HomeAssistant, domain: str) -> bool: