Fixed mypy complaints

This commit is contained in:
2024-01-07 14:02:23 +01:00
parent bd30682092
commit 6535422148
15 changed files with 473 additions and 336 deletions

View File

@@ -31,12 +31,15 @@ warn_redundant_casts = true
disallow_untyped_calls = true
disallow_untyped_defs = true
no_implicit_optional = true
follow_imports = "normal"
exclude = [
"clan_cli.nixpkgs",
"tests/openapi_client",
"openapi_client",
]
[[tool.mypy.overrides]]
module = "openapi_client.*"
ignore_errors = true
[[tool.mypy.overrides]]
module = "argcomplete.*"
ignore_missing_imports = true