diff options
| author | Martin Czygan <martin@archive.org> | 2020-07-24 10:11:37 +0000 | 
|---|---|---|
| committer | Martin Czygan <martin@archive.org> | 2020-07-24 10:11:37 +0000 | 
| commit | 8b00843af1366cf019c896057706ace4afff27ba (patch) | |
| tree | 86fc58bf26f07e272aa27e989f3ab6b4cfef2090 /python/fatcat_web | |
| parent | 2170e5ff46dfb2bba9bf26196de3c3774c16cd4a (diff) | |
| parent | fc93f35996cab23984d9a45f1a411b8776e437bf (diff) | |
| download | fatcat-8b00843af1366cf019c896057706ace4afff27ba.tar.gz fatcat-8b00843af1366cf019c896057706ace4afff27ba.zip | |
Merge branch 'bnewbold-more-lint-fixes' into 'master'
more lint fixes
See merge request webgroup/fatcat!69
Diffstat (limited to 'python/fatcat_web')
| -rw-r--r-- | python/fatcat_web/__init__.py | 2 | ||||
| -rw-r--r-- | python/fatcat_web/routes.py | 2 | 
2 files changed, 2 insertions, 2 deletions
| diff --git a/python/fatcat_web/__init__.py b/python/fatcat_web/__init__.py index 56a2e020..562ffeb2 100644 --- a/python/fatcat_web/__init__.py +++ b/python/fatcat_web/__init__.py @@ -71,7 +71,7 @@ mwoauth = MWOAuth(  mwoauth.handshaker.user_agent = "fatcat.wiki;python_web_interface"  app.register_blueprint(mwoauth.bp, url_prefix='/auth/wikipedia') -from fatcat_web import routes, editing_routes, auth, cors, forms +from fatcat_web import routes, editing_routes, auth, cors, forms  # noqa: E402  # TODO: blocking on ORCID support in loginpass  if Config.ORCID_CLIENT_ID: diff --git a/python/fatcat_web/routes.py b/python/fatcat_web/routes.py index 4684f799..2489ac03 100644 --- a/python/fatcat_web/routes.py +++ b/python/fatcat_web/routes.py @@ -935,7 +935,7 @@ def create_auth_token():          try:              duration_seconds = int(duration_seconds)              assert duration_seconds >= 1 -        except: +        except (ValueError, AssertionError):              flash("duration_seconds must be a positive non-zero integer")              abort(400) | 
