Skip to content

Commit 7babb5d

Browse files
committed
Remove C901 exclusion; code is now compliant.
1 parent 5d2a97e commit 7babb5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

distutils/spawn.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
from .errors import DistutilsExecError
1616

1717

18-
def spawn(cmd, search_path=1, verbose=0, dry_run=0, env=None): # noqa: C901
18+
def spawn(cmd, search_path=1, verbose=0, dry_run=0, env=None):
1919
"""Run another program, specified as a command list 'cmd', in a new process.
2020
2121
'cmd' is just the argument list for the new process, ie.

0 commit comments

Comments
 (0)