From b91fd41d3d1db7fbb53c47592cebcc3a5e944fb1 Mon Sep 17 00:00:00 2001 From: Nathan Larsen Date: Thu, 14 Mar 2024 17:10:17 +0000 Subject: [PATCH] Remove call to check_api_config from the sync client context entrance --- homeassistant_api/rawclient.py | 1 - 1 file changed, 1 deletion(-) diff --git a/homeassistant_api/rawclient.py b/homeassistant_api/rawclient.py index 09b8c89..f543247 100644 --- a/homeassistant_api/rawclient.py +++ b/homeassistant_api/rawclient.py @@ -74,7 +74,6 @@ def __enter__(self) -> "RawClient": logger.debug("Entering cached requests session %r.", self.cache_session) self.cache_session.__enter__() self.check_api_running() - self.check_api_config() return self def __exit__(self, _, __, ___) -> None: