diff options
Diffstat (limited to 'numpy/lib/stride_tricks.pyi')
-rw-r--r-- | numpy/lib/stride_tricks.pyi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/lib/stride_tricks.pyi b/numpy/lib/stride_tricks.pyi index bafc46e9c..aad404107 100644 --- a/numpy/lib/stride_tricks.pyi +++ b/numpy/lib/stride_tricks.pyi @@ -6,12 +6,12 @@ from numpy.typing import ( ArrayLike, _ShapeLike, _Shape, - _NestedSequence, + _FiniteNestedSequence, _SupportsArray, ) _SCT = TypeVar("_SCT", bound=generic) -_ArrayLike = _NestedSequence[_SupportsArray[dtype[_SCT]]] +_ArrayLike = _FiniteNestedSequence[_SupportsArray[dtype[_SCT]]] __all__: List[str] |