(self)
| 335 | self._options = options |
| 336 | |
| 337 | async def __aiter__(self) -> AsyncIterator[_T]: |
| 338 | async for page in self.iter_pages(): |
| 339 | for item in page._get_page_items(): |
| 340 | yield item |
| 341 | |
| 342 | async def iter_pages(self: AsyncPageT) -> AsyncIterator[AsyncPageT]: |
| 343 | page = self |
nothing calls this directly
no test coverage detected