mirror of
https://github.com/home-assistant/core.git
synced 2025-07-14 16:57:10 +00:00
Set follow_imports to normal [mypy] (#115521)
This commit is contained in:
parent
e08301f362
commit
6422bc4c19
2
mypy.ini
2
mypy.ini
@ -6,7 +6,7 @@
|
|||||||
python_version = 3.12
|
python_version = 3.12
|
||||||
plugins = pydantic.mypy
|
plugins = pydantic.mypy
|
||||||
show_error_codes = true
|
show_error_codes = true
|
||||||
follow_imports = silent
|
follow_imports = normal
|
||||||
local_partial_types = true
|
local_partial_types = true
|
||||||
strict_equality = true
|
strict_equality = true
|
||||||
no_implicit_optional = true
|
no_implicit_optional = true
|
||||||
|
@ -34,7 +34,7 @@ GENERAL_SETTINGS: Final[dict[str, str]] = {
|
|||||||
"python_version": ".".join(str(x) for x in REQUIRED_PYTHON_VER[:2]),
|
"python_version": ".".join(str(x) for x in REQUIRED_PYTHON_VER[:2]),
|
||||||
"plugins": "pydantic.mypy",
|
"plugins": "pydantic.mypy",
|
||||||
"show_error_codes": "true",
|
"show_error_codes": "true",
|
||||||
"follow_imports": "silent",
|
"follow_imports": "normal",
|
||||||
# Enable some checks globally.
|
# Enable some checks globally.
|
||||||
"local_partial_types": "true",
|
"local_partial_types": "true",
|
||||||
"strict_equality": "true",
|
"strict_equality": "true",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user