From 3e64e3459ab9f0da953c01b34cef3caba7f85cbe Mon Sep 17 00:00:00 2001 From: Yogesh Tewari Date: Mon, 2 Aug 2021 17:47:24 -0400 Subject: [PATCH] feat: Allow user to specify a format for stdout, updated help for format (#242) --- data_validation/cli_tools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data_validation/cli_tools.py b/data_validation/cli_tools.py index 9c18b923e..0f8028260 100644 --- a/data_validation/cli_tools.py +++ b/data_validation/cli_tools.py @@ -295,7 +295,7 @@ def _configure_run_parser(subparsers): "--format", "-fmt", default="table", - help="Set the format for printing command output", + help="Set the format for printing command output, Supported formats are (text, csv, json, table)", )