We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02b856a commit 509245fCopy full SHA for 509245f
distutils/compilers/C/base.py
@@ -15,7 +15,6 @@
15
TYPE_CHECKING,
16
ClassVar,
17
Literal,
18
- TypeAlias,
19
TypeVar,
20
Union,
21
overload,
@@ -40,7 +39,7 @@
40
39
)
41
42
if TYPE_CHECKING:
43
- from typing_extensions import TypeVarTuple, Unpack
+ from typing_extensions import TypeAlias, TypeVarTuple, Unpack
44
45
_Ts = TypeVarTuple("_Ts")
46
distutils/dist.py
@@ -21,7 +21,6 @@
Any,
22
23
24
25
26
27
@@ -42,6 +41,7 @@
from _typeshed import SupportsWrite
+ from typing_extensions import TypeAlias
# type-only import because of mutual dependence between these modules
47
from .cmd import Command
0 commit comments