1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00

fixed a few flake8 errors

This commit is contained in:
Alex Gaynor 2016-01-01 15:47:31 -05:00
parent 407a09aeaf
commit e799283156
2 changed files with 5 additions and 3 deletions

View file

@ -183,8 +183,8 @@ class Command(object):
if sys.version_info[:2] == (2, 6):
warnings.warn(
"Python 2.6 is no longer supported by the Python core team, "
"please upgrade your Python. A future version of pip will drop "
"support for Python 2.6",
"please upgrade your Python. A future version of pip will "
"drop support for Python 2.6",
deprecation.Python26DeprecationWarning
)

View file

@ -19,7 +19,9 @@ class RemovedInPip10Warning(PipDeprecationWarning, PendingDeprecationWarning):
pass
class Python26DeprecationWarning(PipDeprecationWarning, PendingDeprecationWarning):
class Python26DeprecationWarning(
PipDeprecationWarning, PendingDeprecationWarning
):
pass