From c1e3c1a27c86c6bd20112214e17f7f7a2154fbdf Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Tue, 24 Jan 2023 23:00:12 -1000 Subject: [PATCH] Migrate escea to use async_forward_entry_setups (#86559) Replaces deprecated async_setup_platforms with async_forward_entry_setups --- homeassistant/components/escea/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/escea/__init__.py b/homeassistant/components/escea/__init__.py index 95e6765fa95..98d86ead76b 100644 --- a/homeassistant/components/escea/__init__.py +++ b/homeassistant/components/escea/__init__.py @@ -12,7 +12,7 @@ PLATFORMS = [CLIMATE_DOMAIN] async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: """Set up from a config entry.""" await async_start_discovery_service(hass) - hass.config_entries.async_setup_platforms(entry, PLATFORMS) + await hass.config_entries.async_forward_entry_setups(entry, PLATFORMS) return True