Skip to content

Commit

Permalink
Make flake happy
Browse files Browse the repository at this point in the history
  • Loading branch information
thegreyd committed Jul 3, 2023
1 parent 544677d commit 9facc91
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion elliottlib/cli/move_builds_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

pass_runtime = click.make_pass_decorator(Runtime)


@cli.command('move-builds', short_help='Move builds from one advisory to another')
@click.option(
'--from', 'from_advisory', metavar='ADVISORY_ID',
Expand All @@ -23,7 +24,8 @@
'--kind', '-k', metavar='KIND', required=True,
type=click.Choice(['rpm', 'image']),
help='Builds of the given KIND [rpm, image]')
@click.option("--noop", "--dry-run",
@click.option(
"--noop", "--dry-run",
is_flag=True,
default=False,
help="Don't change anything")
Expand Down

0 comments on commit 9facc91

Please sign in to comment.