(
self, grid_out: AsyncGridOut, chunks: AsyncCollection[Any], session: AsyncClientSession
)
| 1921 | |
| 1922 | class AsyncGridOutIterator: |
| 1923 | def __init__( |
| 1924 | self, grid_out: AsyncGridOut, chunks: AsyncCollection[Any], session: AsyncClientSession |
| 1925 | ): |
| 1926 | self._chunk_iter = _AsyncGridOutChunkIterator(grid_out, chunks, session, 0) |
| 1927 | |
| 1928 | def __aiter__(self) -> AsyncGridOutIterator: |
| 1929 | return self |
nothing calls this directly
no test coverage detected