neovim/typings/numpy/_typing/_shape.pyi

9 lines
217 B
Python

"""
This type stub file was generated by pyright.
"""
from collections.abc import Sequence
from typing import SupportsIndex, Union
_Shape = tuple[int, ...]
_ShapeLike = Union[SupportsIndex, Sequence[SupportsIndex]]