diff --git a/proxy_scraper_checker/scraper.py b/proxy_scraper_checker/scraper.py index a89c77e83..3363dd990 100644 --- a/proxy_scraper_checker/scraper.py +++ b/proxy_scraper_checker/scraper.py @@ -62,7 +62,6 @@ async def scrape_one( proxies = PROXY_REGEX.findall(text) if not proxies: _logger.warning("%s | No proxies found", source) - # Ignore too big sources elif len(proxies) <= 100_000: # noqa: PLR2004 _logger.warning( "%s has too many proxies (%d), skipping", source, len(proxies)