From 4f595962b7cd0b2997f55734bdedcdcd65e7e345 Mon Sep 17 00:00:00 2001 From: Allen Porter Date: Sun, 27 Mar 2022 02:50:13 -0700 Subject: [PATCH] Pause deprecation of legacy works with Nest API (#68715) --- homeassistant/components/nest/legacy/__init__.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/homeassistant/components/nest/legacy/__init__.py b/homeassistant/components/nest/legacy/__init__.py index e0202c63567..79579a1c3df 100644 --- a/homeassistant/components/nest/legacy/__init__.py +++ b/homeassistant/components/nest/legacy/__init__.py @@ -109,12 +109,6 @@ async def async_setup_legacy(hass: HomeAssistant, config: dict) -> bool: if DOMAIN not in config: return True - _LOGGER.warning( - "The Legacy Works With Nest API is deprecated and support will be removed " - "in Home Assistant Core 2022.5; See instructions for using the Smart Device " - "Management API at https://www.home-assistant.io/integrations/nest/" - ) - conf = config[DOMAIN] local_auth.initialize(hass, conf[CONF_CLIENT_ID], conf[CONF_CLIENT_SECRET])