summaryrefslogtreecommitdiff
path: root/setuptools/_distutils/command/upload.py
diff options
context:
space:
mode:
authorAnderson Bravalheri <andersonbravalheri@gmail.com>2022-08-01 17:32:58 +0100
committerGitHub <noreply@github.com>2022-08-01 17:32:58 +0100
commit00eaec7a0c4e49af9c4062145c969f08d2953abe (patch)
tree26ac5421a2fa1c040eaa880354fee717556611a4 /setuptools/_distutils/command/upload.py
parentfe6d794adea937f08146084495d0721a375d8ce7 (diff)
parent3ecabf8583b6e57d3ac47b34d6afec0b9d00b167 (diff)
downloadpython-setuptools-git-00eaec7a0c4e49af9c4062145c969f08d2953abe.tar.gz
Merge branch 'main' into docs-notfound-page
Diffstat (limited to 'setuptools/_distutils/command/upload.py')
-rw-r--r--setuptools/_distutils/command/upload.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/_distutils/command/upload.py b/setuptools/_distutils/command/upload.py
index 782e3dea..f2a8118e 100644
--- a/setuptools/_distutils/command/upload.py
+++ b/setuptools/_distutils/command/upload.py
@@ -71,7 +71,7 @@ class upload(PyPIRCCommand):
for command, pyversion, filename in self.distribution.dist_files:
self.upload_file(command, pyversion, filename)
- def upload_file(self, command, pyversion, filename):
+ def upload_file(self, command, pyversion, filename): # noqa: C901
# Makes sure the repository URL is compliant
schema, netloc, url, params, query, fragments = urlparse(self.repository)
if params or query or fragments: