We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c327a76 commit 22ac623Copy full SHA for 22ac623
pyproject.toml
@@ -56,3 +56,8 @@ no_implicit_optional = true # Disallow implicit optional types
56
warn_return_any = true # Warn about returning Any type
57
cache_dir = ".mypy_cache" # Directory for cache files
58
ignore_missing_imports = true # Skip type checking for missing imports (useful for third-party packages)
59
+
60
+# Relax the checks in the test
61
+[[tool.mypy.overrides]]
62
+module = "test.*"
63
+disallow_untyped_defs = false # Function is missing a return type annotation
0 commit comments