From a85f7c4238617ac1f14a70b492943372774126f8 Mon Sep 17 00:00:00 2001 From: Paul Pfeister Date: Tue, 23 Apr 2024 00:46:46 -0400 Subject: [PATCH] Fix docu --- sherlock/sherlock.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sherlock/sherlock.py b/sherlock/sherlock.py index 3941395..e01772b 100644 --- a/sherlock/sherlock.py +++ b/sherlock/sherlock.py @@ -208,8 +208,7 @@ def sherlock( underlying_session = requests.session() underlying_request = requests.Request() - # Limit number of workers to 20. - # This is probably vastly overkill. + # Reduce worker count if greater than size of target pool if len(site_data) < max_workers: max_workers = len(site_data)