From 5b9134617759a1b64adb2f9aba0974c732576cc4 Mon Sep 17 00:00:00 2001 From: Miguel Grinberg Date: Thu, 9 Jun 2022 10:26:42 +0100 Subject: [PATCH] Documentation fix for async client. --- src/socketio/asyncio_client.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/socketio/asyncio_client.py b/src/socketio/asyncio_client.py index db02526..3c700ee 100644 --- a/src/socketio/asyncio_client.py +++ b/src/socketio/asyncio_client.py @@ -50,9 +50,9 @@ class AsyncClient(client.Client): :param request_timeout: A timeout in seconds for requests. The default is 5 seconds. - :param http_session: an initialized ``requests.Session`` object to be used - when sending requests to the server. Use it if you - need to add special client options such as proxy + :param http_session: an initialized ``aiohttp.ClientSession`` object to be + used when sending requests to the server. Use it if + you need to add special client options such as proxy servers, SSL certificates, etc. :param ssl_verify: ``True`` to verify SSL certificates, or ``False`` to skip SSL certificate verification, allowing