Tell mypy to ignore libraries without stubs

This commit is contained in:
Alessio Bogon 2021-10-20 16:22:24 +02:00
parent 63c528fba3
commit 33729841eb
1 changed files with 4 additions and 0 deletions

View File

@ -16,3 +16,7 @@ python_version = "3.6"
warn_return_any = true
warn_unused_configs = true
files = "pytest_bdd/**/*.py"
[[tool.mypy.overrides]]
module = ["parse", "parse_type"]
ignore_missing_imports = true