mirror of
https://github.com/home-assistant/core.git
synced 2025-06-25 01:21:51 +02:00
Set follow_imports to normal [mypy] (#115521)
This commit is contained in:
2
mypy.ini
2
mypy.ini
@ -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
|
||||
|
@ -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",
|
||||
|
Reference in New Issue
Block a user