removes reportUnknownParameterType (pyright), disallows any generics (mypy)

This commit is contained in:
Mose Müller
2023-11-30 09:49:29 +01:00
parent f5d8775141
commit eb0c819037
2 changed files with 2 additions and 3 deletions

View File

@ -93,13 +93,12 @@ max-complexity = 7
[tool.pyright]
include = ["src/pydase"]
typeCheckingMode = "basic"
reportUnknownParameterType = true
[tool.mypy]
show_error_codes = true
disallow_untyped_defs = true
disallow_untyped_calls = true
disallow_incomplete_defs = true
disallow_any_generics = true
check_untyped_defs = true
ignore_missing_imports = false