From 571710265e40aa243cb9f75f69d3199fe40c0547 Mon Sep 17 00:00:00 2001 From: Fasih Hussain Date: Sat, 25 May 2024 16:35:26 +0500 Subject: [PATCH] chore: indeed proxy type arg fixed --- src/jobspy/scrapers/indeed/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jobspy/scrapers/indeed/__init__.py b/src/jobspy/scrapers/indeed/__init__.py index 86c7fe8..faea241 100644 --- a/src/jobspy/scrapers/indeed/__init__.py +++ b/src/jobspy/scrapers/indeed/__init__.py @@ -33,7 +33,7 @@ from ...jobs import ( class IndeedScraper(Scraper): - def __init__(self, proxies: str | None = None): + def __init__(self, proxies: list[str] | None = None): """ Initializes IndeedScraper with the Indeed API url """