From 546102205ed8dbeea4787e8ff92dbbf039387cd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Ml=C3=A1dek?= Date: Mon, 20 Sep 2021 23:06:11 +0200 Subject: [PATCH] fix recursive defaults --- cli/main.ts | 4 ++-- tgbot/kollagen-bot/main.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cli/main.ts b/cli/main.ts index ced4559..bce77f3 100644 --- a/cli/main.ts +++ b/cli/main.ts @@ -24,8 +24,8 @@ const args = parse(Deno.args, { h: 640, include: "*.png, *.jpg", output: "collage.png", - rl: 3, - rr: true + rl: 2, + rr: false }, }); diff --git a/tgbot/kollagen-bot/main.py b/tgbot/kollagen-bot/main.py index 22b3187..21eb3c0 100644 --- a/tgbot/kollagen-bot/main.py +++ b/tgbot/kollagen-bot/main.py @@ -94,8 +94,8 @@ class KollagenBot: "--rl", dest="recursive_level", type=int, - default=3, - help=f"Level/depth of recursive collage. 3 by default.", + default=2, + help=f"Level/depth of recursive collage. 2 by default.", ) parser.add_argument( "--rr",