Skip to content

Commit 7881fbb

Browse files
Update seam/paginator.py
Co-authored-by: Evan Sosenko <evan@getseam.com>
1 parent 3d9e582 commit 7881fbb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

seam/paginator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def first_page(self) -> Tuple[List[Any], Pagination | None]:
4444

4545
return data, pagination
4646

47-
def next_page(self, next_page_cursor: str) -> Tuple[List[Any], Pagination | None]:
47+
def next_page(self, next_page_cursor: str, /) -> Tuple[List[Any], Pagination | None]:
4848
"""Fetches the next page of results using a cursor."""
4949
if not next_page_cursor:
5050
raise ValueError("Cannot get the next page with a null next_page_cursor.")

0 commit comments

Comments
 (0)