From a0e7e56551a23daf058b87a7e94cb1d039c8f7e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Lehfeld?= <54720674+rlehfeld@users.noreply.github.com> Date: Tue, 3 Sep 2024 09:26:23 +0200 Subject: [PATCH] next try to disable pylint --- RPyCRobotRemote/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RPyCRobotRemote/__init__.py b/RPyCRobotRemote/__init__.py index c3a588d..b1aa494 100644 --- a/RPyCRobotRemote/__init__.py +++ b/RPyCRobotRemote/__init__.py @@ -61,8 +61,8 @@ def _accept_method(self, sock): """accept method""" try: self._authenticate_and_serve_client(sock) - except BaseException as e: # disable=broad-exception-caught - self.logger.info( # disable=logging-fstring-interpolation + except BaseException as e: # pylint: disable=broad-exception-caught + self.logger.info( # pylint: disable=logging-fstring-interpolation f'Exception during handling connection: {e!r}' )