-
Notifications
You must be signed in to change notification settings - Fork 14
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
Reformat command line help descriptions #90
Conversation
I tested this branch with the PR suite against a baseline, which passed after removing the |
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.
One small formatting suggestion but this looks great!
(Geez, who wrote this code in the first place?! Thanks for cleaning up my mess.)
polaris/list.py
Outdated
help='List supported machines (instead of test ' | ||
'cases).') |
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.
To make the linter happy:
help='List supported machines (instead of test ' | |
'cases).') | |
help='List supported machines (instead of test ' | |
'cases).') |
"'polaris list'. Can be a space-separated " | ||
"list of case numbers. A suffix 'c' indicates " | ||
"that all steps in the test should use cached " |
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.
Oh, no! Nice catch!
Feel free to merge this yourself once you've made that one formatting change. |
While testing, I noticed that some of these descriptions had typos that made them hard to read. I went ahead and looked through other argument parsing help messages to fix some typos and generally make the formatting consistent (such as adding or removing periods).
d041d8f
to
51bcd5d
Compare
While testing, I noticed that some of these descriptions had typos that made them hard to read. I went ahead and looked through other argument parsing help messages to fix some typos and generally make the formatting consistent (such as adding or removing periods).
Checklist
Testing
comment in the PR documents testing used to verify the changes