From 6103ebc5bb22747063314f94ec5be859b273f4b3 Mon Sep 17 00:00:00 2001 From: Nikita Sobolev Date: Mon, 13 Jul 2020 23:40:20 +0300 Subject: [PATCH] Removes redundant `\` char --- mypy/subtypes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mypy/subtypes.py b/mypy/subtypes.py index cecc24ed6aee..b0fc61a7c874 100644 --- a/mypy/subtypes.py +++ b/mypy/subtypes.py @@ -408,7 +408,7 @@ def visit_overloaded(self, left: Overloaded) -> bool: found_match = False for left_index, left_item in enumerate(left.items()): - subtype_match = self._is_subtype(left_item, right_item)\ + subtype_match = self._is_subtype(left_item, right_item) # Order matters: we need to make sure that the index of # this item is at least the index of the previous one.