Skip to content

Commit 92f30e6

Browse files
committed
Linter fix
1 parent a685f74 commit 92f30e6

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

command_runner/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1007,6 +1007,8 @@ def _monitor_process(
10071007
if os_name == "nt" and sys.version_info >= (3, 7):
10081008
kwargs["creationflags"] = kwargs.pop("creationflags", 0) | process_prio
10091009
else:
1010+
# Don't bother to make pylint go crazy on Windows
1011+
# pylint: disable=E1101
10101012
kwargs["preexec_fn"] = lambda: os.nice(process_prio)
10111013

10121014
# Disabling pylint error for the same reason as above

0 commit comments

Comments
 (0)