Migrate life360 to use async_forward_entry_setups (#86571)

This commit is contained in:
J. Nick Koston 2023-01-24 10:42:24 -10:00 committed by GitHub
parent 2c9e8ad475
commit a4c52567a7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -168,7 +168,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
hass.data[DOMAIN].coordinators[entry.entry_id] = coordinator
# Set up components for our platforms.
hass.config_entries.async_setup_platforms(entry, PLATFORMS)
await hass.config_entries.async_forward_entry_setups(entry, PLATFORMS)
return True