From c0830f1c20d27f770a833f5fa4c99d1066cdf908 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Mon, 13 Aug 2018 22:39:13 +0200 Subject: [PATCH] Deprecate remote.api (#15955) --- homeassistant/remote.py | 1 + 1 file changed, 1 insertion(+) diff --git a/homeassistant/remote.py b/homeassistant/remote.py index 313f98a890c..c254dd500f7 100644 --- a/homeassistant/remote.py +++ b/homeassistant/remote.py @@ -48,6 +48,7 @@ class API: port: Optional[int] = SERVER_PORT, use_ssl: bool = False) -> None: """Init the API.""" + _LOGGER.warning('This class is deprecated and will be removed in 0.77') self.host = host self.port = port self.api_password = api_password