From ce2a83f7324510ff77c46cccb01315b1b77edd03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Praszmo?= Date: Mon, 4 Jan 2021 14:04:25 +0100 Subject: [PATCH] Add missing option to cli help page (#20) --- src/cli/formatters/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/formatters/__init__.py b/src/cli/formatters/__init__.py index 3ab7f7d..3ef39f2 100644 --- a/src/cli/formatters/__init__.py +++ b/src/cli/formatters/__init__.py @@ -25,7 +25,7 @@ def pass_formatter(fn): @functools.wraps(fn) @click.option("--output", "-o", default="", help="Format attributes separated by commas. Supported values: nocolor, " - "nopager, nohuman") + "nopager, nohuman, short") def wrapper(*args, **kwargs): formatter = get_formatter(output_format=kwargs["output"]) del kwargs["output"]