mirror of
https://github.com/laramies/theHarvester.git
synced 2025-02-24 22:42:56 +08:00
Fix mypy
This commit is contained in:
parent
dadf4a3180
commit
7457d6fb85
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue