From da390dbd9ae5547a4bcc2179f9fa8439f0c5fef0 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Tue, 24 Jan 2023 10:16:22 -1000 Subject: [PATCH] Migrate google_assistant to use async_forward_entry_setups (#86561) Replaces deprecated async_setup_platforms with async_forward_entry_setups --- homeassistant/components/google_assistant/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/google_assistant/__init__.py b/homeassistant/components/google_assistant/__init__.py index 82868828531..3a0315a5931 100644 --- a/homeassistant/components/google_assistant/__init__.py +++ b/homeassistant/components/google_assistant/__init__.py @@ -166,6 +166,6 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: DOMAIN, SERVICE_REQUEST_SYNC, request_sync_service_handler ) - hass.config_entries.async_setup_platforms(entry, PLATFORMS) + await hass.config_entries.async_forward_entry_setups(entry, PLATFORMS) return True