Skip to content

Commit 05cd938

Browse files
pdgendttomchy
authored andcommitted
[nrf fromtree] scripts: west_commands: runners: Remove obsolete pylint ignores
These ignores were added with an older version of pylint and are either removed or ignored by default. Signed-off-by: Pieter De Gendt <[email protected]> (cherry picked from commit aae018b) Signed-off-by: Tomasz Chyrowicz <[email protected]>
1 parent 2c251d1 commit 05cd938

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

scripts/west_commands/runners/intel_cyclonev.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,6 @@ def print_gdbserver_message(self):
174174
self.logger.info('OpenOCD GDB server running on port '
175175
f'{self.gdb_port}{thread_msg}')
176176

177-
# pylint: disable=R0201
178177
def to_num(self, number):
179178
dev_match = re.search(r"^\d*\+dev", number)
180179
dev_version = not dev_match is None

scripts/west_commands/runners/uf2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from runners.core import ZephyrBinaryRunner, RunnerCaps
1111

1212
try:
13-
import psutil # pylint: disable=unused-import
13+
import psutil
1414
MISSING_PSUTIL = False
1515
except ImportError:
1616
# This can happen when building the documentation for the

0 commit comments

Comments
 (0)