From 3129d52a86b6dd7479710d94800aca0311888b4e Mon Sep 17 00:00:00 2001 From: Artem Litvinov Date: Thu, 12 Oct 2023 16:14:36 +0100 Subject: [PATCH] fix: added type ignore --- src/assistant/lib/clients/http_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/assistant/lib/clients/http_client.py b/src/assistant/lib/clients/http_client.py index efc6a53..532759d 100644 --- a/src/assistant/lib/clients/http_client.py +++ b/src/assistant/lib/clients/http_client.py @@ -17,7 +17,7 @@ class AsyncHttpClient(httpx.AsyncClient): self.proxies = self.__get_proxies_from_settings() self.client_params = client_params - super().__init__(base_url=self.base_url, proxies=self.proxies, **client_params) + super().__init__(base_url=self.base_url, proxies=self.proxies, **client_params) # type: ignore[reportGeneralTypeIssues] def __get_proxies_from_settings(self) -> dict[str, str] | None: if not self.proxy_settings.enable: