-
Notifications
You must be signed in to change notification settings - Fork 194
slcli account orders #1349
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
slcli account orders #1349
Conversation
allmightyspiff
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A few minor comments, otherwise works great, thanks.
Tests
✔️ slcli account orders
✔️ slcli account orders --limit 10
SoftLayer/CLI/account/orders.py
Outdated
|
|
||
| @click.command() | ||
| @click.option('--limit', '-l', | ||
| help='How many results to get in one api call, default is 100', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Dont need default is 100 in this help text, as the show_default=True adds that.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
set the help message to help='How many results to get in one api call'
SoftLayer/CLI/account/orders.py
Outdated
|
|
||
| @click.command() | ||
| @click.option('--limit', '-l', | ||
| help='How many results to get in one api call, default is 100', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
set the help message to help='How many results to get in one api call'
#1341