Fix an invalid type hint on get_jobs_for_collection_json

This commit is contained in:
Ryszard Knop 2024-04-17 19:37:53 +02:00
parent 49f0c1efd7
commit 67a09b47f0

View File

@ -86,7 +86,7 @@ def get_jobs_for_browse_url(url: str, client: ItchApiClient) -> List[str]:
return list(found_urls)
def get_jobs_for_collection_json(url: str, client: ItchApiClient) -> dict:
def get_jobs_for_collection_json(url: str, client: ItchApiClient) -> List[str]:
page = 1
found_urls: Set[str] = set()