mirror of
https://github.com/ijaric/voice_assistant.git
synced 2025-12-15 21:06:17 +00:00
fix(typing): [#38] **client_params to typing.Any
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
import typing
|
||||
|
||||
import httpx
|
||||
|
||||
import lib.app.split_settings as app_split_settings
|
||||
@@ -8,7 +10,7 @@ class AsyncHttpClient:
|
||||
self,
|
||||
proxy_settings: app_split_settings.ProxySettings,
|
||||
base_url: str | None = None,
|
||||
**client_params: dict[str, str],
|
||||
**client_params: dict[typing.Any, typing.Any],
|
||||
) -> None:
|
||||
self.base_url = base_url if base_url else ""
|
||||
self.proxy_settings = proxy_settings
|
||||
|
||||
Reference in New Issue
Block a user