Update array2d.pyi

This commit is contained in:
blueloveTH 2024-04-27 22:25:34 +08:00
parent 665b95a162
commit a9820102eb

View File

@ -27,7 +27,7 @@ class array2d(Generic[T]):
def __setitem__(self, index: tuple[slice, slice], value: int | float | str | bool | None | 'array2d[T]'): ...
def __len__(self) -> int: ...
def __iter__(self) -> Iterator[T]: ...
def __iter__(self) -> Iterator[tuple[int, int, T]]: ...
def __eq__(self, other: 'array2d') -> bool: ...
def __ne__(self, other: 'array2d') -> bool: ...
def __repr__(self): ...