From c9bdd292bc91b400f2ff6c7fbe495c58d0e3dc99 Mon Sep 17 00:00:00 2001 From: John Bampton Date: Thu, 10 Dec 2020 04:56:14 +1000 Subject: [PATCH] Remove unneeded parentheses from Python files --- airflow/cli/cli_parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airflow/cli/cli_parser.py b/airflow/cli/cli_parser.py index 671a9366ce159..a1f9595fffce9 100644 --- a/airflow/cli/cli_parser.py +++ b/airflow/cli/cli_parser.py @@ -177,7 +177,7 @@ def positive_int(value): "-o", "--output", ), - help=("Output format. Allowed values: json, yaml, table (default: table)"), + help="Output format. Allowed values: json, yaml, table (default: table)", metavar="(table, json, yaml)", choices=("table", "json", "yaml"), default="table",