From 8ad45ae9fcc7c08b903749c674bfc044aa991966 Mon Sep 17 00:00:00 2001 From: Jean-Louis Fuchs Date: Mon, 22 Apr 2024 09:44:48 +0200 Subject: [PATCH] fix: remove debug flag completely --- pyaptly/cli.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyaptly/cli.py b/pyaptly/cli.py index 2422fb2..0c5c8d5 100644 --- a/pyaptly/cli.py +++ b/pyaptly/cli.py @@ -51,10 +51,11 @@ def __init__(self, **kwargs): @click.group() -def cli(debug: bool): +def cli(): """Show basic command group.""" pass + # TODO legacy is here to be able to do early alpha and get feedback from users. # remove when there is full replacement. @cli.command(help="run legacy command parser")