Add --show-sensitive CLI option

This commit is contained in:
Matthias
2024-03-20 07:06:24 +01:00
parent 6b7935f1ae
commit 81d1a662a2
4 changed files with 15 additions and 4 deletions

View File

@@ -716,4 +716,10 @@ AVAILABLE_CLI_OPTIONS = {
help='Specify startup candles to be checked (`199`, `499`, `999`, `1999`).',
nargs='+',
),
"show_sensitive": Arg(
'--show-sensitive',
help='Show secrets in the output.',
action='store_true',
default=False,
),
}