diff options
-rw-r--r-- | pyproject.toml | 1 | ||||
-rw-r--r-- | tox.ini | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml index 0cd4c1b..27b5faa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,6 +6,7 @@ order_by_type = false [tool.mypy] disallow_incomplete_defs = true disallow_untyped_defs = true +files = "." [[tool.mypy.overrides]] # Overrides for currently untyped modules module = [ @@ -41,7 +41,7 @@ basepython = python3 envdir={toxworkdir}/lint deps = -r{toxinidir}/requirements-lint.txt commands = - mypy {posargs} . + mypy {posargs} [testenv:twine-check] basepython = python3 |