Skip to content

Commit 16061cf

Browse files
black formatter
1 parent 06f12c0 commit 16061cf

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

mypy/constraints.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
from __future__ import annotations
44

55
from collections.abc import Iterable, Sequence
6-
from typing import TYPE_CHECKING, Final, NamedTuple, cast
7-
from typing_extensions import TypeGuard
6+
from typing import TYPE_CHECKING, Final, NamedTuple, TypeGuard, cast
87

98
import mypy.subtypes
109
import mypy.typeops

mypy/tuple_normal_form.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
from __future__ import annotations
22

3-
from collections.abc import Iterable, Sequence
3+
from collections.abc import Callable, Iterable, Sequence
44
from itertools import chain
5-
from typing import TYPE_CHECKING, Callable, NamedTuple, NewType, cast
6-
from typing_extensions import TypeGuard, TypeIs
5+
from typing import TYPE_CHECKING, NamedTuple, NewType, TypeGuard, cast
6+
from typing_extensions import TypeIs
77

88
from mypy.maptype import map_instance_to_supertype
99
from mypy.nodes import TypeInfo

0 commit comments

Comments
 (0)