We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6a0407 commit 4288f8cCopy full SHA for 4288f8c
1 file changed
src/arcadepy/pagination.py
@@ -26,7 +26,7 @@ def _get_page_items(self) -> List[_T]:
26
def next_page_info(self) -> Optional[PageInfo]:
27
offset = self.offset
28
if offset is None:
29
- return None
+ return None # type: ignore[unreachable]
30
31
length = len(self._get_page_items())
32
current_count = offset + length
@@ -57,7 +57,7 @@ def _get_page_items(self) -> List[_T]:
57
58
59
60
61
62
63
0 commit comments