From 9e9065837ee42c0f54dea4ef0f6a2a2533bcd086 Mon Sep 17 00:00:00 2001 From: Anael Mobilia Date: Tue, 20 Feb 2024 00:52:30 +0100 Subject: [PATCH] Define default value for batch_size to 10 as according to the documentation (#465) --- parsedmarc/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parsedmarc/cli.py b/parsedmarc/cli.py index c77ce36..3b31bd3 100644 --- a/parsedmarc/cli.py +++ b/parsedmarc/cli.py @@ -333,7 +333,7 @@ def _main(): mailbox_watch=False, mailbox_delete=False, mailbox_test=False, - mailbox_batch_size=None, + mailbox_batch_size=10, mailbox_check_timeout=30, imap_host=None, imap_skip_certificate_verification=False,