(self, grid_out: GridOut, chunks: Collection[Any], session: ClientSession)
| 1909 | |
| 1910 | class GridOutIterator: |
| 1911 | def __init__(self, grid_out: GridOut, chunks: Collection[Any], session: ClientSession): |
| 1912 | self._chunk_iter = GridOutChunkIterator(grid_out, chunks, session, 0) |
| 1913 | |
| 1914 | def __iter__(self) -> GridOutIterator: |
| 1915 | return self |
nothing calls this directly
no test coverage detected