Update mypy to 1.5.0 (#98179)

This commit is contained in:
Marc Mueller 2023-08-11 13:13:04 +02:00 committed by GitHub
parent 990ec1d445
commit fb66ceb302
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 10 additions and 9 deletions

View file

@ -51,8 +51,9 @@ GENERAL_SETTINGS: Final[dict[str, str]] = {
]
),
"disable_error_code": ", ".join(["annotation-unchecked"]),
# Strict_concatenate breaks passthrough ParamSpec typing
"strict_concatenate": "false",
# Impractical in real code
# E.g. this breaks passthrough ParamSpec typing with Concatenate
"extra_checks": "false",
}
# This is basically the list of checks which is enabled for "strict=true".