From 9513ce34f31fa352217f7c646064a5589f09c846 Mon Sep 17 00:00:00 2001 From: Jean-Louis Fuchs Date: Tue, 26 Mar 2024 20:57:33 +0100 Subject: [PATCH] chore: remove useless option from base command --- pyaptly/cli.py | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/pyaptly/cli.py b/pyaptly/cli.py index 769db5f..2422fb2 100644 --- a/pyaptly/cli.py +++ b/pyaptly/cli.py @@ -51,19 +51,9 @@ def __init__(self, **kwargs): @click.group() -@click.option( - "-d/-nd", - "--debug/--no-debug", - type=bool, - default=False, - help="Add default values to fields if missing", -) def cli(debug: bool): """Show basic command group.""" - from pyaptly import util - - util._DEBUG = debug - + pass # TODO legacy is here to be able to do early alpha and get feedback from users. # remove when there is full replacement.