From cee45ae21d4c6a0a6c5a951646eaa83257b130b3 Mon Sep 17 00:00:00 2001 From: Christoph Date: Wed, 10 Jul 2024 15:46:35 +0200 Subject: [PATCH] fix #292 this PR should fix issue #292 --- custom_components/skodaconnect/__init__.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/custom_components/skodaconnect/__init__.py b/custom_components/skodaconnect/__init__.py index 414b8f1..1e3df48 100755 --- a/custom_components/skodaconnect/__init__.py +++ b/custom_components/skodaconnect/__init__.py @@ -253,9 +253,7 @@ def is_enabled(attr): for component in components: coordinator.platforms.append(component) - hass.async_create_task( - hass.config_entries.async_forward_entry_setup(entry, component) - ) + await hass.config_entries.async_forward_entry_setup(entry, component) # Service functions async def get_car(service_call):