From 0090e9dfa7c213025f720b96bbd4d66103cd028d Mon Sep 17 00:00:00 2001 From: security-companion Date: Thu, 28 Mar 2024 00:05:17 +0100 Subject: [PATCH] set default of wait time to 3 seconds --- src/hibp_harvester.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/hibp_harvester.py b/src/hibp_harvester.py index 8bb6215..1592a91 100644 --- a/src/hibp_harvester.py +++ b/src/hibp_harvester.py @@ -170,7 +170,8 @@ def save_breaches_to_file(breachLibrary): ) @click.option( "--wait_time", - help="The wait time in seconds between requests to the API", + default=3, + help="The wait time in seconds between requests to the API, default is 2 seconds", ) def main(api_key, wait_time): config = read_config(api_key, wait_time)