(_cursor: Optional[str])
| 389 | |
| 390 | def list(self) -> AutoPager[ReviewView]: |
| 391 | async def fetch(_cursor: Optional[str]) -> Page: |
| 392 | resp = await self._c._read(lambda h: self._api.list_reviews(_headers=h)) |
| 393 | # No cursor param: single-page at GA — see AgentsResource.list. |
| 394 | return _page(resp.items) |
| 395 | |
| 396 | return AutoPager(fetch) |
| 397 |
nothing calls this directly
no test coverage detected