Browse Source

Documentation fix for async client.

pull/941/head
Miguel Grinberg 3 years ago
committed by GitHub
parent
commit
5b91346177
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      src/socketio/asyncio_client.py

6
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 :param request_timeout: A timeout in seconds for requests. The default is
5 seconds. 5 seconds.
:param http_session: an initialized ``requests.Session`` object to be used :param http_session: an initialized ``aiohttp.ClientSession`` object to be
when sending requests to the server. Use it if you used when sending requests to the server. Use it if
need to add special client options such as proxy you need to add special client options such as proxy
servers, SSL certificates, etc. servers, SSL certificates, etc.
:param ssl_verify: ``True`` to verify SSL certificates, or ``False`` to :param ssl_verify: ``True`` to verify SSL certificates, or ``False`` to
skip SSL certificate verification, allowing skip SSL certificate verification, allowing

Loading…
Cancel
Save