From 67a09b47f08978548c1c44518a76eb1a019f01e2 Mon Sep 17 00:00:00 2001 From: Ryszard Knop Date: Wed, 17 Apr 2024 19:37:53 +0200 Subject: [PATCH] Fix an invalid type hint on get_jobs_for_collection_json --- itch_dl/handlers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/itch_dl/handlers.py b/itch_dl/handlers.py index e800614..c870119 100644 --- a/itch_dl/handlers.py +++ b/itch_dl/handlers.py @@ -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()