From f40cbe734fc1864949732115255e14133b24aa58 Mon Sep 17 00:00:00 2001 From: Timan82 <157248910+Timan82@users.noreply.github.com> Date: Sat, 21 Jun 2025 20:23:06 -0700 Subject: [PATCH] Update __init__.py --- custom_components/govee/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/govee/__init__.py b/custom_components/govee/__init__.py index b92ceaa..1bc17a8 100644 --- a/custom_components/govee/__init__.py +++ b/custom_components/govee/__init__.py @@ -69,7 +69,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry): raise PlatformNotReady() for component in PLATFORMS: - await hass.config_entries.async_forward_entry_setup(entry, component) + await hass.config_entries.async_forward_entry_setups(entry, [component]) return True