Skip to content

Commit 9779915

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
1 parent 3bcd4b5 commit 9779915

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

stdlib/typing.pyi

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ from types import (
2121
WrapperDescriptorType,
2222
)
2323
from typing_extensions import Never as _Never, ParamSpec as _ParamSpec, deprecated
24-
import typing_extensions
2524

2625
if sys.version_info >= (3, 14):
2726
from _typeshed import EvaluateFunc
@@ -1137,7 +1136,13 @@ if sys.version_info >= (3, 12):
11371136
def override(method: _F, /) -> _F: ...
11381137
@final
11391138
class TypeAliasType:
1140-
def __new__(cls, name: str, value: Any, *, type_params: tuple[TypeVar | ParamSpec | TypeVarTuple | typing_extensions.TypeVar, ...] = ()) -> Self: ...
1139+
def __new__(
1140+
cls,
1141+
name: str,
1142+
value: Any,
1143+
*,
1144+
type_params: tuple[TypeVar | ParamSpec | TypeVarTuple | typing_extensions.TypeVar, ...] = (),
1145+
) -> Self: ...
11411146
@property
11421147
def __value__(self) -> Any: ... # AnnotationForm
11431148
@property

0 commit comments

Comments
 (0)