Skip to content

Commit 078879e

Browse files
committed
Fix formatting
1 parent 419af97 commit 078879e

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

mypy/checker.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2708,12 +2708,9 @@ def get_isinstance_type(expr: Expression, type_map: Dict[Expression, Type]) -> T
27082708
# Type variables may be present -- erase them, which is the best
27092709
# we can do (outside disallowing them here).
27102710
type = erase_typevars(type.items()[0].ret_type)
2711-
27122711
types.append(type)
2713-
27142712
elif isinstance(type, TypeType):
27152713
types.append(type.item)
2716-
27172714
else: # we didn't see an actual type, but rather a variable whose value is unknown to us
27182715
return None
27192716

0 commit comments

Comments
 (0)