diff options
Diffstat (limited to 'setuptools/_distutils/config.py')
| -rw-r--r-- | setuptools/_distutils/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/_distutils/config.py b/setuptools/_distutils/config.py index 34a1c3b7..6e0c3a71 100644 --- a/setuptools/_distutils/config.py +++ b/setuptools/_distutils/config.py @@ -44,7 +44,7 @@ class PyPIRCCommand(Command): with os.fdopen(os.open(rc, os.O_CREAT | os.O_WRONLY, 0o600), 'w') as f: f.write(DEFAULT_PYPIRC % (username, password)) - def _read_pypirc(self): + def _read_pypirc(self): # noqa: C901 """Reads the .pypirc file.""" rc = self._get_rc_file() if os.path.exists(rc): |
