From fcfeae64b6169938f3370d04a32093354a1f4e34 Mon Sep 17 00:00:00 2001 From: Alex Kuhrt Date: Wed, 30 Aug 2023 15:43:52 +0200 Subject: [PATCH] Fix a typo in the documentation The code examples for passing a custom `http_session` to the client contain an incorrect reference. This commit corrects the reference to `requests.Session`. --- docs/client.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/client.rst b/docs/client.rst index e3dcc55..07d120e 100644 --- a/docs/client.rst +++ b/docs/client.rst @@ -158,7 +158,7 @@ that is configured with the desired TLS/SSL options. The following example disables server certificate verification, which can be useful when connecting to a server that uses a self-signed certificate:: - http_session = request.Session() + http_session = requests.Session() http_session.verify = False sio = socketio.Client(http_session=http_session) sio.connect('https://example.com') @@ -173,7 +173,7 @@ And when using ``asyncio``:: Instead of disabling certificate verification, you can provide a custom certificate authority bundle to verify the certificate against:: - http_session = request.Session() + http_session = requests.Session() http_session.verify = '/path/to/ca.pem' sio = socketio.Client(http_session=http_session) sio.connect('https://example.com') @@ -190,7 +190,7 @@ And for ``asyncio``:: Below you can see how to use a client certificate to authenticate against the server:: - http_session = request.Session() + http_session = requests.Session() http_session.cert = ('/path/to/client/cert.pem', '/path/to/client/key.pem') sio = socketio.Client(http_session=http_session) sio.connect('https://example.com')