From 2fdb645e006484c6925173d022266ff101136ed9 Mon Sep 17 00:00:00 2001 From: maxnth Date: Tue, 21 Nov 2023 10:53:43 +0100 Subject: [PATCH] config/set line2page to single thread as default --- pagetools/cli/transformations/line2page.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pagetools/cli/transformations/line2page.py b/pagetools/cli/transformations/line2page.py index e736620..22c0933 100644 --- a/pagetools/cli/transformations/line2page.py +++ b/pagetools/cli/transformations/line2page.py @@ -86,7 +86,7 @@ help="Sets the level of feedback to receive: DEBUG=10, INFO=20, WARNING=30, ERROR=40, CRITICAL=50", show_default=True) @click.option("--threads", - default=16, + default=1, type=click.IntRange(min=1, clamp=True), help="Thread count to be used", show_default=True)