Skip to content

Commit

Permalink
Fix wrong version help string (#1056)
Browse files Browse the repository at this point in the history
The `click.option("-v", "--version", ..)` currently has the help string from `@click.option("--service-account", ...)`.

Signed-off-by: fg91 <[email protected]>
  • Loading branch information
fg91 authored Jun 6, 2022
1 parent 0aa07eb commit 53d31c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flytekit/clis/sdk_in_container/register.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
"--version",
required=False,
type=str,
help="Service account used when creating launch plans",
help="Version the package or module is registered with",
)
@click.argument("package-or-module", type=click.Path(exists=True, readable=True, resolve_path=True), nargs=-1)
@click.pass_context
Expand Down

0 comments on commit 53d31c2

Please sign in to comment.