Skip to content

Commit

Permalink
next try to disable pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
rlehfeld committed Sep 3, 2024
1 parent 355f604 commit a0e7e56
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RPyCRobotRemote/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}'
)

Expand Down

0 comments on commit a0e7e56

Please sign in to comment.