Skip to content

Commit

Permalink
fix: tier names in cli
Browse files Browse the repository at this point in the history
  • Loading branch information
dtdang committed Oct 18, 2024
1 parent c50ba75 commit cf28401
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions silverback/_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -309,15 +309,15 @@ def pay():
@click.option(
"-t",
"--tier",
default=ClusterTier.PERSONAL.name.capitalize(),
default=ClusterTier.STANDARD.name.capitalize(),
metavar="NAME",
type=click.Choice(
[
ClusterTier.PERSONAL.name.capitalize(),
ClusterTier.PROFESSIONAL.name.capitalize(),
ClusterTier.STANDARD.name.capitalize(),
ClusterTier.PREMIUM.name.capitalize(),
]
),
help="Named set of options to use for cluster as a base (Defaults to Personal)",
help="Named set of options to use for cluster as a base (Defaults to Standard)",
)
@click.option(
"-c",
Expand Down

0 comments on commit cf28401

Please sign in to comment.