(self)
| 328 | self._options = options |
| 329 | |
| 330 | async def __aiter__(self) -> AsyncIterator[_T]: |
| 331 | async for page in self.iter_pages(): |
| 332 | for item in page._get_page_items(): |
| 333 | yield item |
| 334 | |
| 335 | async def iter_pages(self: AsyncPageT) -> AsyncIterator[AsyncPageT]: |
| 336 | page = self |
nothing calls this directly
no test coverage detected