From 267a0ed2eefddcfc7fda974a5db9248822d47ff4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20H=C3=B6rrle?= Date: Fri, 8 Dec 2023 08:39:33 +0100 Subject: [PATCH] don't use CacheClient on request_raw --- mytoyota/controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mytoyota/controller.py b/mytoyota/controller.py index 4e4a473d..88fe13d3 100644 --- a/mytoyota/controller.py +++ b/mytoyota/controller.py @@ -210,7 +210,7 @@ async def request_raw( # noqa: PLR0913 if vin is not None: headers.update({"vin": vin}) - async with hishel.AsyncCacheClient(timeout=self._timeout) as client: + async with httpx.AsyncClient(timeout=self._timeout) as client: response = await client.request( method, f"{self._api_base_url}{endpoint}",