We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7881fbb commit 43afa81Copy full SHA for 43afa81
1 file changed
seam/paginator.py
@@ -44,7 +44,9 @@ def first_page(self) -> Tuple[List[Any], Pagination | None]:
44
45
return data, pagination
46
47
- def next_page(self, next_page_cursor: str, /) -> Tuple[List[Any], Pagination | None]:
+ def next_page(
48
+ self, next_page_cursor: str, /
49
+ ) -> Tuple[List[Any], Pagination | None]:
50
"""Fetches the next page of results using a cursor."""
51
if not next_page_cursor:
52
raise ValueError("Cannot get the next page with a null next_page_cursor.")
0 commit comments