Skip to content

Commit

Permalink
Code style
Browse files Browse the repository at this point in the history
  • Loading branch information
febus982 committed Mar 23, 2024
1 parent bba56bf commit 5bab13e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions sqlalchemy_bind_manager/_repository/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,11 @@ class CursorPageInfo(BaseModel):
:type has_next_page: bool
:param has_previous_page: True if there is a previous page.
:type has_previous_page: bool
:param start_cursor: The cursor pointing to the first item in the page, if at least one item is returned.
:param start_cursor: The cursor pointing to the first item in the page,
if at least one item is returned.
:type start_cursor: Union[CursorReference, None]
:param end_cursor: The cursor pointing to the last item in the page, if at least one item is returned.
:param end_cursor: The cursor pointing to the last item in the page,
if at least one item is returned.
:type end_cursor: Union[CursorReference, None]
"""
items_per_page: int
Expand Down

0 comments on commit 5bab13e

Please sign in to comment.