Remove unneeded parentheses from Python file (#12968)

This commit is contained in:
John Bampton 2020-12-15 08:02:35 +10:00 коммит произвёл GitHub
Родитель b4b9cf5597
Коммит 317858ac76
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -178,7 +178,7 @@ ARG_OUTPUT = Arg(
"-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",