From 383eeaf8a6534ee582abe26cb914c33a06daf99d Mon Sep 17 00:00:00 2001 From: Miguel Grinberg Date: Sat, 4 Oct 2025 19:30:23 +0100 Subject: [PATCH] linter fixes #nolog --- src/socketio/async_client.py | 4 ++-- src/socketio/base_manager.py | 4 ++-- src/socketio/client.py | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/socketio/async_client.py b/src/socketio/async_client.py index a4f4267..678743a 100644 --- a/src/socketio/async_client.py +++ b/src/socketio/async_client.py @@ -175,8 +175,8 @@ class AsyncClient(base_client.BaseClient): if set(self.namespaces) != set(self.connection_namespaces): await self.disconnect() raise exceptions.ConnectionError( - 'One or more namespaces failed to connect: ' + - ', '.join(self.failed_namespaces)) + 'One or more namespaces failed to connect: ' + + ', '.join(self.failed_namespaces)) self.connected = True diff --git a/src/socketio/base_manager.py b/src/socketio/base_manager.py index 58706db..ae4530b 100644 --- a/src/socketio/base_manager.py +++ b/src/socketio/base_manager.py @@ -33,8 +33,8 @@ class BaseManager: Note that in a multi-server scenario this method only returns the participants connect to the server in which the method is called. There - is currently no functionality to assemble a complete list of users across - multiple servers. + is currently no functionality to assemble a complete list of users + across multiple servers. """ ns = self.rooms.get(namespace, {}) if hasattr(room, '__len__') and not isinstance(room, str): diff --git a/src/socketio/client.py b/src/socketio/client.py index bf1bee4..5282e0a 100644 --- a/src/socketio/client.py +++ b/src/socketio/client.py @@ -168,8 +168,8 @@ class Client(base_client.BaseClient): if set(self.namespaces) != set(self.connection_namespaces): self.disconnect() raise exceptions.ConnectionError( - 'One or more namespaces failed to connect: ' + - ', '.join(self.failed_namespaces)) + 'One or more namespaces failed to connect: ' + + ', '.join(self.failed_namespaces)) self.connected = True