Skip to content

Commit f934298

Browse files
committed
Merge branch 'type_check_alignment' of github.com:jack-tutor/mypy into type_check_alignment
2 parents 2ba0d84 + 89b3700 commit f934298

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

mypy/checkstrformat.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1076,9 +1076,9 @@ def conversion_type(
10761076
elif p.startswith(("<", ">", "=", "^")):
10771077
return UnionType(
10781078
[
1079-
self.named_type("builtins.int"),
1080-
self.named_type("builtins.float"),
1081-
self.named_type("builtins.str")
1079+
self.named_type("builtins.int"),
1080+
self.named_type("builtins.float"),
1081+
self.named_type("builtins.str"),
10821082
]
10831083
)
10841084
else:

0 commit comments

Comments
 (0)