diff --git a/hondana/http.py b/hondana/http.py index 39e9e54..61dacaa 100755 --- a/hondana/http.py +++ b/hondana/http.py @@ -306,7 +306,7 @@ async def _generate_session(self) -> aiohttp.ClientSession: .. note:: This method must be a coroutine to avoid the deprecation warning of Python 3.9+. """ - self._session = aiohttp.ClientSession() + self._session = aiohttp.ClientSession(cookie_jar=aiohttp.DummyCookieJar()) return self._session async def close(self) -> None: