From d4b03f9ef13fda241197995e03adf7620c06b836 Mon Sep 17 00:00:00 2001 From: Peter Bierma Date: Sat, 9 Nov 2024 16:11:59 -0500 Subject: [PATCH] Fix typo with `AsyncClient.connect` example --- src/socketio/async_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/socketio/async_client.py b/src/socketio/async_client.py index 5fd8daa..e79fce0 100644 --- a/src/socketio/async_client.py +++ b/src/socketio/async_client.py @@ -116,7 +116,7 @@ class AsyncClient(base_client.BaseClient): Example usage:: sio = socketio.AsyncClient() - sio.connect('http://localhost:5000') + await sio.connect('http://localhost:5000') """ if self.connected: raise exceptions.ConnectionError('Already connected')