Skip to content

Commit 2b68d40

Browse files
committed
♻️ NEP 50 type alias shape type defaults to Any
1 parent 0a1d1fb commit 2b68d40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/_numtype/_nep50.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ _ScalarOutT = TypeVar("_ScalarOutT", bound=_ScalarOut, default=Any)
4040
_ScalarOutT_co = TypeVar("_ScalarOutT_co", bound=_ScalarOut, covariant=True)
4141
_ScalarOutT_contra = TypeVar("_ScalarOutT_contra", bound=_ScalarOut, contravariant=True)
4242

43-
_ShapeT = TypeVar("_ShapeT", bound=_shape.Shape, default=_shape.Shape)
43+
_ShapeT = TypeVar("_ShapeT", bound=_shape.Shape, default=Any)
4444
_ShapeT_co = TypeVar("_ShapeT_co", bound=_shape.Shape, covariant=True)
4545

4646
###

0 commit comments

Comments
 (0)