Skip to content

Commit

Permalink
disable pylint warning
Browse files Browse the repository at this point in the history
  • Loading branch information
rlehfeld committed Sep 3, 2024
1 parent 362ee14 commit 355f604
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions RPyCRobotRemote/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@ def _accept_method(self, sock):
"""accept method"""
try:
self._authenticate_and_serve_client(sock)
except BaseException as e: # disable=W0718
self.logger.info(
except BaseException as e: # disable=broad-exception-caught
self.logger.info( # disable=logging-fstring-interpolation
f'Exception during handling connection: {e!r}'
) # disable=W1203
)


# work around problems with is_list_like and remote tuples objects
Expand Down

0 comments on commit 355f604

Please sign in to comment.