Skip to content

Commit

Permalink
try to fix pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
rlehfeld committed Sep 3, 2024
1 parent 7603ad8 commit 362ee14
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions RPyCRobotRemote/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,10 @@ def _accept_method(self, sock):
"""accept method"""
try:
self._authenticate_and_serve_client(sock)
except Exception as e:
self.logger.info(f'Exception during handling connection: {e!r}')
except BaseException as e: # disable=W0718
self.logger.info(
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 362ee14

Please sign in to comment.