Skip to content

Commit

Permalink
Remove C901 exclusion; code is now compliant.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Jun 28, 2024
1 parent 5d2a97e commit 7babb5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion distutils/spawn.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from .errors import DistutilsExecError


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

0 comments on commit 7babb5d

Please sign in to comment.