This commit is contained in:
c4coer 2025-07-06 10:02:32 +02:00 committed by GitHub
commit 74ff66b8eb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -55,7 +55,7 @@ async def async_setup_entry(hass: HomeAssistantType, entry: ConfigEntry) -> bool
for platform in PLATFORMS:
hass.async_create_task(
hass.config_entries.async_forward_entry_setup(entry, platform)
hass.config_entries.async_forward_entry_setups(entry, [platform])
)
return True