Skip to content

Commit 0bbc8fc

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
1 parent c015c58 commit 0bbc8fc

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

stdlib/typing.pyi

Lines changed: 8 additions & 6 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
@@ -1143,11 +1142,14 @@ if sys.version_info >= (3, 12):
11431142
value: Any,
11441143
*,
11451144
type_params: tuple[
1146-
TypeVar | typing_extensions.TypeVar |
1147-
ParamSpec | typing_extensions.ParamSpec |
1148-
TypeVarTuple | typing_extensions.TypeVarTuple,
1149-
...
1150-
] = ()
1145+
TypeVar
1146+
| typing_extensions.TypeVar
1147+
| ParamSpec
1148+
| typing_extensions.ParamSpec
1149+
| TypeVarTuple
1150+
| typing_extensions.TypeVarTuple,
1151+
...,
1152+
] = (),
11511153
) -> Self: ...
11521154
@property
11531155
def __value__(self) -> Any: ... # AnnotationForm

0 commit comments

Comments
 (0)