-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
Fix docstring surrounding whitespace #9689
Conversation
Thank you for opening a new pull request. Before your PR can be merged it will first need to pass continuous integration tests and be reviewed. Sometimes the review process can be slow, so please be patient. While you're waiting, please feel free to review other open PRs. While only a subset of people are authorized to approve pull requests for merging, everyone is encouraged to review open pull requests. Doing reviews helps reduce the burden on the core team and helps make the project's code better for everyone. One or more of the the following people are requested to review this:
|
Pull Request Test Coverage Report for Build 4303543399
💛 - Coveralls |
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.
LGTM
(Manually updated because of test failures fixed by #9691) |
Co-authored-by: Jake Lishman <jake.lishman@ibm.com> (cherry picked from commit f82aca8)
Co-authored-by: Jake Lishman <jake.lishman@ibm.com>
Co-authored-by: Jake Lishman <jake.lishman@ibm.com>
Co-authored-by: Jake Lishman <jake.lishman@ibm.com>
Co-authored-by: Jake Lishman <jake.lishman@ibm.com>
In an attempt both to make #9586 smaller/easier to review and to make some obvious easy fixes that are easily automated by
ruff
, which will be worthwhile even in the event we don't switch over toruff
frompylint
I'm pulling out a few of the obvious categories of fixes.This one is from
ruff check --select=D210 --fix qiskit tools test
and fixes "No whitespaces allowed surrounding docstring text" problems, with a small bit of handwork to cover a couple cases unhandled by the autofix.