neovim/typings/numpy/_typing/_shape.pyi

10 lines
217 B
Python
Raw Normal View History

2023-10-24 22:54:55 -04:00
"""
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]]