diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2022-02-03 21:16:46 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2022-02-03 21:16:46 -0800 |
commit | 54f9f9feb0e5ff954b3f8160d650f941c02bd8f8 (patch) | |
tree | 6338e89e2868d582f4ba6b02af5beed942d7aab3 /python | |
parent | d9d9c32528c168114c4b1a6afeedf21674322f69 (diff) | |
download | fatcat-54f9f9feb0e5ff954b3f8160d650f941c02bd8f8.tar.gz fatcat-54f9f9feb0e5ff954b3f8160d650f941c02bd8f8.zip |
temporarily disable mypy checks on web_config.py
Diffstat (limited to 'python')
-rw-r--r-- | python/fatcat_web/__init__.py | 2 | ||||
-rw-r--r-- | python/fatcat_web/web_config.py | 8 |
2 files changed, 8 insertions, 2 deletions
diff --git a/python/fatcat_web/__init__.py b/python/fatcat_web/__init__.py index 70f8ad4a..9877d98e 100644 --- a/python/fatcat_web/__init__.py +++ b/python/fatcat_web/__init__.py @@ -17,7 +17,7 @@ from loginpass import GitHub, Gitlab, ORCiD, create_flask_blueprint from sentry_sdk.integrations.flask import FlaskIntegration from fatcat_web.types import AnyResponse -from fatcat_web.web_config import Config +from fatcat_web.web_config import Config # type: ignore toolbar = DebugToolbarExtension() diff --git a/python/fatcat_web/web_config.py b/python/fatcat_web/web_config.py index d58214cc..fb3b55ab 100644 --- a/python/fatcat_web/web_config.py +++ b/python/fatcat_web/web_config.py @@ -1,3 +1,8 @@ +# type: ignore +# TODO: we are ignoring mypy type checks on this file because of all the +# 'os.environ' usage, which is causing trouble with newer mypy. Should resolve +# (annotate?) and re-enable type checking here + """ Default configuration for fatcat web interface (Flask application). @@ -8,6 +13,7 @@ This config is *only* for the web interface, *not* for any of the workers or import scripts. """ + import os import subprocess from typing import Union @@ -43,7 +49,7 @@ def test_bool_str() -> None: assert bool_str("FALSE") is False -def fetch_git_sha(): +def fetch_git_sha() -> str: """ Get short commit id, runnable anywhere within a git repository. """ |