summaryrefslogtreecommitdiff
path: root/setuptools/installer.py
diff options
context:
space:
mode:
authorSviatoslav Sydorenko <wk@sydorenko.org.ua>2020-12-31 13:08:18 +0100
committerSviatoslav Sydorenko <wk@sydorenko.org.ua>2020-12-31 19:01:22 +0100
commitfc891f5cf6d93ad533e2afb5e15a2952408ab358 (patch)
treeebe67de5500e5be0891b0b64edd09e0177b74c80 /setuptools/installer.py
parentc225c4c0f64bf044f2f82693df097ad07f9c12bd (diff)
downloadpython-setuptools-git-fc891f5cf6d93ad533e2afb5e15a2952408ab358.tar.gz
Apply noqa C901 comments to overly complex code
Diffstat (limited to 'setuptools/installer.py')
-rw-r--r--setuptools/installer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/installer.py b/setuptools/installer.py
index ac2aba18..c5822a31 100644
--- a/setuptools/installer.py
+++ b/setuptools/installer.py
@@ -51,7 +51,7 @@ def _legacy_fetch_build_egg(dist, req):
return cmd.easy_install(req)
-def fetch_build_egg(dist, req):
+def fetch_build_egg(dist, req): # noqa: C901 # is too complex (16) # FIXME
"""Fetch an egg needed for building.
Use pip/wheel to fetch/build a wheel."""