Skip to content

Commit ad7c194

Browse files
committed
minor fix to cli args
1 parent 67620c1 commit ad7c194

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

planet/scripts/cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,14 +262,14 @@ def read_file_json(ctx, param, value):
262262
@coro
263263
@click.option('--name', required=True)
264264
@click.option('--id', 'ids', help='One or more comma-separated item IDs',
265-
type=click.STRING, callback=split_id_list)
265+
type=click.STRING, callback=split_id_list, required=True)
266266
# @click.option('--ids_from_search',
267267
# help='Embedded data search')
268268
@click.option('--bundle', multiple=False, required=True,
269269
help='Specify bundle',
270270
type=click.Choice(planet.specs.get_product_bundles(),
271271
case_sensitive=False),
272-
is_eager=True)
272+
)
273273
@click.option('--item-type', multiple=False, required=True,
274274
help='Specify an item type',
275275
type=click.STRING)

0 commit comments

Comments
 (0)