Skip to content

Commit

Permalink
fix pylint finding
Browse files Browse the repository at this point in the history
  • Loading branch information
rlehfeld committed May 30, 2024
1 parent 715dcf9 commit d49b19b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions RPyCRobotRemote/RPyCRobotRemoteClient.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
from robot.api.deco import not_keyword


logger = logging.getLogger('RPyCRobotRemote.Client')
logger.setLevel(logging.INFO)
del logger
LOGGER = logging.getLogger('RPyCRobotRemote.Client')
LOGGER.setLevel(logging.INFO)
del LOGGER


@contextmanager
Expand Down
6 changes: 3 additions & 3 deletions RPyCRobotRemote/RPyCRobotRemoteServer.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
from rpyc.utils.server import ThreadedServer


logger = logging.getLogger('RPyCRobotRemote.Server')
logger.setLevel(logging.INFO)
del logger
LOGGER = logging.getLogger('RPyCRobotRemote.Server')
LOGGER.setLevel(logging.INFO)
del LOGGER


class RPyCRobotRemoteServer:
Expand Down

0 comments on commit d49b19b

Please sign in to comment.