Browse Source

Fix typos in src/socketio/async_client.py (#1520)

pull/1522/head
Lê Nam Khánh 7 months ago
committed by GitHub
parent
commit
db3f1c2a01
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

@ -489,7 +489,7 @@ class AsyncClient(base_client.BaseClient):
raise raise
return ret return ret
# or else, forward the event to a namepsace handler if one exists # or else, forward the event to a namespace handler if one exists
handler, args = self._get_namespace_handler(namespace, args) handler, args = self._get_namespace_handler(namespace, args)
if handler: if handler:
return await handler.trigger_event(event, *args) return await handler.trigger_event(event, *args)

Loading…
Cancel
Save