Explicitly pass in the config_entry in homeassistant_alerts coordinator (#138153)

explicitly pass in the config_entry in coordinator
This commit is contained in:
Michael
2025-02-09 21:44:13 +01:00
committed by GitHub
parent 08dbd83a55
commit 49968904b2

View File

@@ -40,6 +40,7 @@ class AlertUpdateCoordinator(DataUpdateCoordinator[dict[str, IntegrationAlert]])
super().__init__(
hass,
_LOGGER,
config_entry=None,
name=DOMAIN,
update_interval=UPDATE_INTERVAL,
)