Parcourir la source

Update array2d.pyi

blueloveTH il y a 1 an
Parent
commit
a9820102eb
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      include/typings/array2d.pyi

+ 1 - 1
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 __setitem__(self, index: tuple[slice, slice], value: int | float | str | bool | None | 'array2d[T]'): ...
 
 
     def __len__(self) -> int: ...
     def __len__(self) -> int: ...
-    def __iter__(self) -> Iterator[T]: ...
+    def __iter__(self) -> Iterator[tuple[int, int, T]]: ...
     def __eq__(self, other: 'array2d') -> bool: ...
     def __eq__(self, other: 'array2d') -> bool: ...
     def __ne__(self, other: 'array2d') -> bool: ...
     def __ne__(self, other: 'array2d') -> bool: ...
     def __repr__(self): ...
     def __repr__(self): ...