Skip to content

Commit 62c3a22

Browse files
committed
more lint
1 parent 20e4ff9 commit 62c3a22

File tree

2 files changed

+4
-10
lines changed

2 files changed

+4
-10
lines changed

planet/cli/orders.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -135,11 +135,8 @@ def orders(ctx, base_url):
135135
@click.option(
136136
'--destination-ref',
137137
help="Filter by orders created with the provided destination reference.")
138-
@click.option(
139-
'--user-id',
140-
help=
141-
"Filter by user ID. Only available to organization admins. Accepts 'all' or a specific user ID."
142-
)
138+
@click.option('--user-id',
139+
help="Filter by user ID. Accepts 'all' or a specific user ID.")
143140
@limit
144141
@pretty
145142
async def list(ctx,

planet/cli/subscriptions.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -110,11 +110,8 @@ def subscriptions(ctx, base_url):
110110
'--destination-ref',
111111
help="Filter subscriptions created with the provided destination reference."
112112
)
113-
@click.option(
114-
'--user-id',
115-
help=
116-
"Filter by user ID. Only available to organization admins. Accepts 'all' or a specific user ID."
117-
)
113+
@click.option('--user-id',
114+
help="Filter by user ID. Accepts 'all' or a specific user ID.")
118115
@limit
119116
@click.option('--page-size',
120117
type=click.INT,

0 commit comments

Comments
 (0)