File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,6 @@ from types import (
2121 WrapperDescriptorType ,
2222)
2323from typing_extensions import Never as _Never , ParamSpec as _ParamSpec , deprecated
24- import typing_extensions
2524
2625if 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
You can’t perform that action at this time.
0 commit comments