Skip to content

Commit

Permalink
fix arg def
Browse files Browse the repository at this point in the history
  • Loading branch information
aarontp committed Oct 7, 2023
1 parent 95a8483 commit 3bc5217
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions turbinia/api/cli/turbinia_client/core/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,8 @@ def get_jobs(ctx: click.Context) -> None:
'shown in full detail, and tasks with a higher value will only have '
'a summary shown. The default is 20 which corresponds to "HIGH_PRIORITY"'
'To see all tasks report output in full detail, set --priority_filter=100 '
'or to see CRITICAL only set --priority_filter=10', is_flag=True, type=int,
default=80, required=False)
'or to see CRITICAL only set --priority_filter=10', show_default=True,
default=80, type=int, required=False)
@click.option(
'--show_all', '-a', help='Shows all fields including saved output paths.',
is_flag=True, required=False)
Expand Down

0 comments on commit 3bc5217

Please sign in to comment.