diff --git a/custom_components/indego/__init__.py b/custom_components/indego/__init__.py index 273b359..80e9875 100644 --- a/custom_components/indego/__init__.py +++ b/custom_components/indego/__init__.py @@ -229,12 +229,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: async def load_platforms(): _LOGGER.debug("Loading platforms") - await asyncio.gather( - *( - hass.config_entries.async_forward_entry_setup(entry, platform) - for platform in INDEGO_PLATFORMS - ) - ) + await hass.config_entries.async_forward_entry_setups(entry, INDEGO_PLATFORMS) try: await indego_hub.update_generic_data_and_load_platforms(load_platforms) diff --git a/custom_components/indego/manifest.json b/custom_components/indego/manifest.json index 6bc3974..a686634 100644 --- a/custom_components/indego/manifest.json +++ b/custom_components/indego/manifest.json @@ -7,6 +7,6 @@ "codeowners": ["@jm-73", "@eavanvalkenburg", "@sander1988"], "requirements": ["pyIndego==3.2.2"], "iot_class": "cloud_push", - "version": "5.7.5", + "version": "5.7.6", "loggers": ["custom_components.indego", "pyIndego"] }