Skip to content

Commit b363204

Browse files
authored
Removes redundant \ char (#9144)
1 parent 358522e commit b363204

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mypy/subtypes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ def visit_overloaded(self, left: Overloaded) -> bool:
408408
found_match = False
409409

410410
for left_index, left_item in enumerate(left.items()):
411-
subtype_match = self._is_subtype(left_item, right_item)\
411+
subtype_match = self._is_subtype(left_item, right_item)
412412

413413
# Order matters: we need to make sure that the index of
414414
# this item is at least the index of the previous one.

0 commit comments

Comments
 (0)