Skip to content

Commit c3df9f6

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
1 parent 30f1555 commit c3df9f6

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

stdlib/typing_extensions.pyi

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,10 @@ from typing import ( # noqa: Y022,Y037,Y038,Y039,UP035
6868

6969
if sys.version_info >= (3, 10):
7070
from types import UnionType
71-
_UnionType: TypeAlias = UnionType
71+
72+
_UnionType: TypeAlias = ...
7273
else:
73-
_UnionType: TypeAlias = Any
74+
_UnionType: TypeAlias = ...
7475

7576
# Please keep order the same as at runtime.
7677
__all__ = [

0 commit comments

Comments
 (0)