Skip to content

Commit 25e820b

Browse files
committed
change underscore to hyphen
1 parent 596cec4 commit 25e820b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/cli/cli-subscriptions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ planet subscriptions list
128128
```
129129

130130
outputs the JSON for your first 100 subscriptions. If you'd like more you can set the `--limit`
131-
parameter higher, or you can set it to 0 and there will be no limit. By default the `list` command will request Subscriptions API with a page size of 500 subscriptions, and can be set lower or higher with the `--page_size` parameter.
131+
parameter higher, or you can set it to 0 and there will be no limit. By default the `list` command will request Subscriptions API with a page size of 500 subscriptions, and can be set lower or higher with the `--page-size` parameter.
132132

133133
You can get nicer formatting with `--pretty` or pipe it into `jq`, just like the other Planet
134134
CLI’s.

planet/cli/subscriptions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ def subscriptions(ctx, base_url):
118118
documentation
119119
for examples.""")
120120
@limit
121-
@click.option('--page_size',
121+
@click.option('--page-size',
122122
type=click.INT,
123123
help='Number of subscriptions to return per page.')
124124
@click.pass_context

0 commit comments

Comments
 (0)