diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2020-07-23 15:31:03 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2020-07-23 15:31:05 -0700 |
commit | 578ce63bd17df11d3ca7cd1083feebe4b92e457c (patch) | |
tree | 306d218688171edd41a768daf65926cd20df5102 /python/fatcat_web/__init__.py | |
parent | 1b28ba68e3b25a0cded2e88b88134d8d332f8d96 (diff) | |
download | fatcat-578ce63bd17df11d3ca7cd1083feebe4b92e457c.tar.gz fatcat-578ce63bd17df11d3ca7cd1083feebe4b92e457c.zip |
simple lint (flake8) fixes over python codebase
These should not have any behavior changes, though a number of exception
catches are now more general, and there may be long-tail exceptions
getting thrown in these statements.
Diffstat (limited to 'python/fatcat_web/__init__.py')
-rw-r--r-- | python/fatcat_web/__init__.py | 2 |
1 files changed, 1 insertions, 1 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: |