This commit is contained in:
J.Townsend 2024-10-27 01:46:06 +00:00 committed by GitHub
parent dadf4a3180
commit 7457d6fb85
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -90,7 +90,7 @@ async def handle_response(self, response: tuple[str, dict, int, Any]) -> ErrorRe
return ErrorResult(500, str(e))
@staticmethod
async def next_page_or_end(result: SuccessResult) -> int | None:
async def next_page_or_end(result: SuccessResult) -> int:
if result.next_page is not None:
return result.next_page
else: