From 48c0817f7744c70cffc3d5ad5a55e558ffbe29ad Mon Sep 17 00:00:00 2001 From: Max Date: Wed, 26 Jun 2024 21:11:25 +0200 Subject: [PATCH] bugfix --- custom_components/dwd_weather/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/dwd_weather/__init__.py b/custom_components/dwd_weather/__init__.py index 2dffc90..363a8a5 100644 --- a/custom_components/dwd_weather/__init__.py +++ b/custom_components/dwd_weather/__init__.py @@ -101,7 +101,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry): DWDWEATHER_COORDINATOR: dwdweather_coordinator, } - await hass.config_entries.async_forward_entry_setups(entry, "camera") + await hass.config_entries.async_forward_entry_setups(entry, ["camera"]) return True