Set follow_imports to normal [mypy] (#115521)

This commit is contained in:
Marc Mueller 2024-04-15 00:26:06 +02:00 committed by GitHub
parent e08301f362
commit 6422bc4c19
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@
python_version = 3.12
plugins = pydantic.mypy
show_error_codes = true
follow_imports = silent
follow_imports = normal
local_partial_types = true
strict_equality = true
no_implicit_optional = true

View File

@ -34,7 +34,7 @@ GENERAL_SETTINGS: Final[dict[str, str]] = {
"python_version": ".".join(str(x) for x in REQUIRED_PYTHON_VER[:2]),
"plugins": "pydantic.mypy",
"show_error_codes": "true",
"follow_imports": "silent",
"follow_imports": "normal",
# Enable some checks globally.
"local_partial_types": "true",
"strict_equality": "true",