We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a685f74 commit 92f30e6Copy full SHA for 92f30e6
command_runner/__init__.py
@@ -1007,6 +1007,8 @@ def _monitor_process(
1007
if os_name == "nt" and sys.version_info >= (3, 7):
1008
kwargs["creationflags"] = kwargs.pop("creationflags", 0) | process_prio
1009
else:
1010
+ # Don't bother to make pylint go crazy on Windows
1011
+ # pylint: disable=E1101
1012
kwargs["preexec_fn"] = lambda: os.nice(process_prio)
1013
1014
# Disabling pylint error for the same reason as above
0 commit comments