From da219575a1b5ec7fc8ce189795392b99559be0ea Mon Sep 17 00:00:00 2001 From: agatha Date: Mon, 6 Nov 2023 17:23:04 -0500 Subject: [PATCH] Remove unneeded lin --- harvester/proxy.py | 1 - 1 file changed, 1 deletion(-) diff --git a/harvester/proxy.py b/harvester/proxy.py index ed5e5ce..d7b5c81 100644 --- a/harvester/proxy.py +++ b/harvester/proxy.py @@ -51,7 +51,6 @@ def fetch_all(urls, max_workers=8): with concurrent.futures.ThreadPoolExecutor(max_workers=max_workers) as executor: future_to_url = {executor.submit(fetch_list, url): url for url in urls} for future in concurrent.futures.as_completed(future_to_url): - url = future_to_url[future] try: proxy_list = future.result() for proxy in proxy_list: