Skip to content

Commit

Permalink
Remove inapplicable arg 'output' for CLI pools import/export (#13071)
Browse files Browse the repository at this point in the history
  • Loading branch information
XD-DENG authored Dec 15, 2020
1 parent 4bacc19 commit 4b67b0b
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions airflow/cli/cli_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -1023,19 +1023,13 @@ class GroupCommand(NamedTuple):
name='import',
help='Import pools',
func=lazy_load_command('airflow.cli.commands.pool_command.pool_import'),
args=(
ARG_POOL_IMPORT,
ARG_OUTPUT,
),
args=(ARG_POOL_IMPORT,),
),
ActionCommand(
name='export',
help='Export all pools',
func=lazy_load_command('airflow.cli.commands.pool_command.pool_export'),
args=(
ARG_POOL_EXPORT,
ARG_OUTPUT,
),
args=(ARG_POOL_EXPORT,),
),
)
VARIABLES_COMMANDS = (
Expand Down

0 comments on commit 4b67b0b

Please sign in to comment.