Skip to content
This repository has been archived by the owner on Aug 27, 2023. It is now read-only.

Commit

Permalink
Upgrade pylint
Browse files Browse the repository at this point in the history
This doesn't work yet. Have to wait for pylint-dev/pylint#3725 to land
  • Loading branch information
stevearc committed Jul 14, 2020
1 parent 466fbbd commit 68cb23a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions pypicloud/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
import binascii
from base64 import b64decode

# pylint: disable=E0611,W0403
# pylint: disable=E0611
from paste.httpheaders import AUTHORIZATION, WWW_AUTHENTICATE

# pylint: enable=E0611,W0403
# pylint: enable=E0611
from pyramid.authorization import ACLAuthorizationPolicy
from pyramid.httpexceptions import HTTPForbidden, HTTPUnauthorized
from pyramid.security import Everyone, authenticated_userid
Expand Down
4 changes: 2 additions & 2 deletions pypicloud/views/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
from io import BytesIO
from urllib.request import urlopen

# pylint: disable=E0611,W0403
# pylint: disable=E0611
from paste.httpheaders import CACHE_CONTROL, CONTENT_DISPOSITION

# pylint: enable=E0611,W0403
# pylint: enable=E0611
from pyramid.httpexceptions import HTTPBadRequest, HTTPForbidden, HTTPNotFound
from pyramid.security import NO_PERMISSION_REQUIRED
from pyramid.view import view_config
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
]

EXTRAS["server"] = ["waitress"]
EXTRAS["lint"] = ["black", "pylint==2.3.1", "mypy", "sqlalchemy-stubs", "isort"]
EXTRAS["lint"] = ["black", "pylint==2.5.3", "mypy", "sqlalchemy-stubs", "isort"]
EXTRAS["doc"] = ["numpydoc", "sphinx", "sphinx_rtd_theme"]


Expand Down

0 comments on commit 68cb23a

Please sign in to comment.