Adjust against mypy type errors

This commit is contained in:
Dave Dalcino
2022-11-17 18:18:21 -08:00
committed by Hiroshi Miura
parent a5bc8a688f
commit 81eebde168
7 changed files with 102 additions and 73 deletions

View File

@@ -151,6 +151,12 @@ warn_return_any = true
warn_unreachable = true
warn_unused_ignores = true
# TODO: Remove this `ignore_missing_imports` and add type stubs.
# See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports
[[tool.mypy.overrides]]
module = "texttable"
ignore_missing_imports = true
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = ["tests"]