(_cursor: Optional[str])
| 457 | |
| 458 | def list(self) -> AutoPager[DomainView]: |
| 459 | async def fetch(_cursor: Optional[str]) -> Page: |
| 460 | resp = await self._c._read(lambda h: self._api.list_domains(_headers=h)) |
| 461 | # No cursor param: drop next_cursor so the pager stops after one page. |
| 462 | # (Single-page at GA — see webhooks.deliveries.) |
| 463 | return _page(resp.items) |
| 464 | |
| 465 | return AutoPager(fetch) |
| 466 |
nothing calls this directly
no test coverage detected