Skip to content

Commit 44163f8

Browse files
sobolevnmiss-islington
authored andcommitted
Replace strict_concatenate = True with extra_checks = True (pythonGH-126391)
(cherry picked from commit cc4f0a2) Co-authored-by: sobolevn <[email protected]>
1 parent aa1beed commit 44163f8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Tools/build/mypy.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ python_version = 3.10
88

99
# ...And be strict:
1010
strict = True
11-
strict_concatenate = True
11+
extra_checks = True
1212
enable_error_code = ignore-without-code,redundant-expr,truthy-bool,possibly-undefined
1313
warn_unreachable = True

Tools/cases_generator/mypy.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ python_version = 3.10
88

99
# ...And be strict:
1010
strict = True
11-
strict_concatenate = True
11+
extra_checks = True
1212
enable_error_code = ignore-without-code,redundant-expr,truthy-bool,possibly-undefined
1313
warn_unreachable = True
1414
allow_redefinition = True

Tools/clinic/mypy.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ python_version = 3.10
77

88
# and be strict!
99
strict = True
10-
strict_concatenate = True
10+
extra_checks = True
1111
enable_error_code = ignore-without-code,redundant-expr,truthy-bool
1212
warn_unreachable = True

0 commit comments

Comments
 (0)