From 9c882333f2c21f497c7440e922c4540fdb61000c Mon Sep 17 00:00:00 2001 From: Dmitry Volodin Date: Thu, 28 Nov 2019 23:49:18 +0300 Subject: [PATCH] fix AsyncClient example --- socketio/asyncio_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/socketio/asyncio_client.py b/socketio/asyncio_client.py index 2b10434..c2a2e09 100644 --- a/socketio/asyncio_client.py +++ b/socketio/asyncio_client.py @@ -86,7 +86,7 @@ class AsyncClient(client.Client): Example usage:: - sio = socketio.Client() + sio = socketio.AsyncClient() sio.connect('http://localhost:5000') """ self.connection_url = url