Browse Source

Fix typo with `AsyncClient.connect` example (#1403)

pull/1404/head
Peter Bierma 5 months ago
committed by GitHub
parent
commit
72d37ea79f
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      src/socketio/async_client.py

2
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')

Loading…
Cancel
Save