From a9820102eb5d46d3995e861872184705bdd95993 Mon Sep 17 00:00:00 2001 From: blueloveTH Date: Sat, 27 Apr 2024 22:25:34 +0800 Subject: [PATCH] Update array2d.pyi --- include/typings/array2d.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/typings/array2d.pyi b/include/typings/array2d.pyi index 81313d70..a0300be2 100644 --- a/include/typings/array2d.pyi +++ b/include/typings/array2d.pyi @@ -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): ...