diff --git a/compendium_v2/app.py b/compendium_v2/app.py index 08783494ae0b24ec84019dc142db66462f3a9ad8..1d4f3588e7cde70578b5122e79a531970152a184 100644 --- a/compendium_v2/app.py +++ b/compendium_v2/app.py @@ -8,4 +8,4 @@ environment.setup_logging() app = compendium_v2.create_app() if __name__ == '__main__': - app.run(host='::', port='5000') + app.run(host='::', port=5000) diff --git a/mypy.ini b/mypy.ini index cc7d0c828eae24e674bd04f1ba495b15874bde35..17c26703f09e6af3586d13765bb55141a162cd18 100644 --- a/mypy.ini +++ b/mypy.ini @@ -2,4 +2,3 @@ python_version = 3.8 disallow_untyped_defs = False ignore_missing_imports = False -exclude = ['env/'] \ No newline at end of file diff --git a/tox.ini b/tox.ini index 69c398075cf8a4fc3c2c7bf0b157b18d33ea751e..8777ca2a1b15f1c6b00e53932543a55ff88126b9 100644 --- a/tox.ini +++ b/tox.ini @@ -18,6 +18,6 @@ commands = coverage html coverage report --fail-under 80 flake8 - mypy compendium_v2/**/*.py test/*.py + mypy {toxinidir}/compendium_v2/ {toxinidir}/test/ sphinx-build -M html docs/source docs/build