From 34a60d405a57401eb4af69e1dfa6af8d0e9f5bc7 Mon Sep 17 00:00:00 2001 From: Ruslan Sayfutdinov Date: Thu, 2 Feb 2023 07:05:49 +0000 Subject: [PATCH] Use async_forward_entry_setups (#645) --- custom_components/google_home/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/google_home/__init__.py b/custom_components/google_home/__init__.py index 4efa734c1..bb00898a6 100644 --- a/custom_components/google_home/__init__.py +++ b/custom_components/google_home/__init__.py @@ -75,7 +75,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: DATA_COORDINATOR: coordinator, } - hass.config_entries.async_setup_platforms(entry, PLATFORMS) + await hass.config_entries.async_forward_entry_setups(entry, PLATFORMS) entry.add_update_listener(async_update_entry) return True