Skip to content

Commit 8c47e39

Browse files
committed
Changed CLI command from describe to get.
1 parent 92670cb commit 8c47e39

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

planet/cli/subscriptions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,13 +113,13 @@ async def update_subscription_cmd(ctx, subscription_id, request, pretty):
113113
echo_json(sub, pretty)
114114

115115

116-
@subscriptions.command(name='describe')
116+
@subscriptions.command(name='get')
117117
@click.argument('subscription_id')
118118
@pretty
119119
@click.pass_context
120120
@translate_exceptions
121121
@coro
122-
async def describe_subscription_cmd(ctx, subscription_id, pretty):
122+
async def get_subscription_cmd(ctx, subscription_id, pretty):
123123
"""Gets the description of a subscription and prints the API response."""
124124
async with subscriptions_client(ctx) as client:
125125
sub = await client.get_subscription(subscription_id)

0 commit comments

Comments
 (0)