feat: trust_env=True for ClientSession

This commit is contained in:
2026-06-23 08:32:40 +03:00
parent b653ed5986
commit 2afb3f26b3
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -33,7 +33,7 @@ class AsyncVikingClient:
self.hash = user_hash
self.timeout = api_timeout
self._close_session = _session is None
self._session = _session or ClientSession()
self._session = _session or ClientSession(trust_env=True)
atexit.register(self._cleanup)