(self)
| 255 | # to cast a model to a dictionary, model.dict(), which is used internally |
| 256 | # by pydantic. |
| 257 | def __iter__(self) -> Iterator[_T]: # type: ignore |
| 258 | for page in self.iter_pages(): |
| 259 | for item in page._get_page_items(): |
| 260 | yield item |
| 261 | |
| 262 | def iter_pages(self: SyncPageT) -> Iterator[SyncPageT]: |
| 263 | page = self |
nothing calls this directly
no test coverage detected