mirror of
https://github.com/home-assistant/core.git
synced 2025-11-14 05:20:17 +00:00
Update mypy to 0.990 (#81783)
* Update mypy to 0.990 * Remove type ignore - overriding attr with property (13475) * Remove type ignores - hasattr (13544) * Adjust type ignore - assignment (13549) * New error code - type-abstract (13785) * Disable annotation-unchecked (13851)
This commit is contained in:
@@ -46,7 +46,8 @@ GENERAL_SETTINGS: Final[dict[str, str]] = {
|
||||
"warn_redundant_casts": "true",
|
||||
"warn_unused_configs": "true",
|
||||
"warn_unused_ignores": "true",
|
||||
"enable_error_code": "ignore-without-code",
|
||||
"enable_error_code": ", ".join(["ignore-without-code"]),
|
||||
"disable_error_code": ", ".join(["annotation-unchecked"]),
|
||||
# Strict_concatenate breaks passthrough ParamSpec typing
|
||||
"strict_concatenate": "false",
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user