From d453f9c336ed8abb1c089ec9c399eb474b6b4aa8 Mon Sep 17 00:00:00 2001 From: Rui Dias Date: Mon, 8 May 2023 12:15:00 +0100 Subject: [PATCH] Update compatibility with Home Assistant 2022.12 --- custom_components/myedenred/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/custom_components/myedenred/__init__.py b/custom_components/myedenred/__init__.py index c109281..916f330 100644 --- a/custom_components/myedenred/__init__.py +++ b/custom_components/myedenred/__init__.py @@ -24,6 +24,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry): """Set up the component from a config entry.""" hass.data.setdefault(DOMAIN, {}) + # Update compatibility with Home Assistant 2022.12 await hass.config_entries.async_forward_entry_setups(entry, PLATFORMS) return True