Skip to content

Commit 43afa81

Browse files
committed
ci: Format code
1 parent 7881fbb commit 43afa81

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

seam/paginator.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,9 @@ 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(
48+
self, next_page_cursor: str, /
49+
) -> Tuple[List[Any], Pagination | None]:
4850
"""Fetches the next page of results using a cursor."""
4951
if not next_page_cursor:
5052
raise ValueError("Cannot get the next page with a null next_page_cursor.")

0 commit comments

Comments
 (0)