10 lines
217 B
Python
10 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]]
|