Skip to content

Commit

Permalink
feat: reduce function call names
Browse files Browse the repository at this point in the history
  • Loading branch information
johnson2427 committed May 1, 2024
1 parent ccee4f2 commit ce3d6e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ape_aws/kms/_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def kms():
"""Manage AWS KMS keys"""


@kms.command()
@kms.command(name="create")
@ape_cli_context()
@click.option(
"-a",
Expand Down Expand Up @@ -116,7 +116,7 @@ def create_key(
cli_ctx.logger.success(f"Key created successfully with ID: {key_id}")


@kms.command()
@kms.command(name="delete")
@ape_cli_context()
@click.argument("alias_name")
@click.option("-d", "--days", default=30, help="Number of days until key is deactivated")
Expand Down

0 comments on commit ce3d6e9

Please sign in to comment.