From 6cb86172b38cc283ad6a97d9a403c462de7dfba7 Mon Sep 17 00:00:00 2001 From: "Jason R. Jones" Date: Fri, 24 Jul 2020 21:17:56 -0400 Subject: [PATCH] Add better help string --- src/wireviz/wireviz.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wireviz/wireviz.py b/src/wireviz/wireviz.py index c1699a9..d8c4c1c 100755 --- a/src/wireviz/wireviz.py +++ b/src/wireviz/wireviz.py @@ -214,7 +214,7 @@ def parse_file(yaml_file: str, file_out: (str, Path) = None) -> None: @click.command() @click.argument('input_file', required=True) @click.option('--prepend', '-p', default=None, help='a YAML file containing a library of templates and parts that may be referenced in the `input_file`') -@click.option('--out', '-o', multiple=True, default=['png'], help='specify one or more output types to be generated; currently supports "png" "svg", "html"') +@click.option('--out', '-o', multiple=True, default=['png'], help='specify one or more output types to be generated; currently supports "png" "svg", "html", "csv", "csv_excel", "csv_unix", "tsv", "tsv_excel"') def main(input_file, prepend, out): """ Take a YAML file containing a harness specification and, utilizing GraphViz,