From 59ba0ad74540e8c3d69ddebe01266be90b9c1456 Mon Sep 17 00:00:00 2001 From: sasja Date: Mon, 27 Mar 2023 17:55:29 +0800 Subject: [PATCH] fix docstring typo: client/server mixup --- src/socketio/asyncio_client.py | 4 ++-- src/socketio/client.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/socketio/asyncio_client.py b/src/socketio/asyncio_client.py index 7d1d018..e68e270 100644 --- a/src/socketio/asyncio_client.py +++ b/src/socketio/asyncio_client.py @@ -183,7 +183,7 @@ class AsyncClient(client.Client): break async def emit(self, event, data=None, namespace=None, callback=None): - """Emit a custom event to one or more connected clients. + """Emit a custom event to the server. :param event: The event name. It can be any string. The event names ``'connect'``, ``'message'`` and ``'disconnect'`` are @@ -252,7 +252,7 @@ class AsyncClient(client.Client): callback=callback) async def call(self, event, data=None, namespace=None, timeout=60): - """Emit a custom event to a client and wait for the response. + """Emit a custom event to the server and wait for the response. This method issues an emit with a callback and waits for the callback to be invoked before returning. If the callback isn't invoked before diff --git a/src/socketio/client.py b/src/socketio/client.py index 73bca4e..2f64533 100644 --- a/src/socketio/client.py +++ b/src/socketio/client.py @@ -365,7 +365,7 @@ class Client(object): break def emit(self, event, data=None, namespace=None, callback=None): - """Emit a custom event to one or more connected clients. + """Emit a custom event to the server. :param event: The event name. It can be any string. The event names ``'connect'``, ``'message'`` and ``'disconnect'`` are @@ -430,7 +430,7 @@ class Client(object): callback=callback) def call(self, event, data=None, namespace=None, timeout=60): - """Emit a custom event to a client and wait for the response. + """Emit a custom event to the server and wait for the response. This method issues an emit with a callback and waits for the callback to be invoked before returning. If the callback isn't invoked before