-
-
Notifications
You must be signed in to change notification settings - Fork 46.6k
Fixes #4712 #4797
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
Fixes #4712 #4797
Conversation
|
okay got it, thanks for mentioning it. |
@@ -14,7 +14,8 @@ | |||
* [ ] All new Python files are placed inside an existing directory. | |||
* [ ] All filenames are in all lowercase characters with no spaces or dashes. | |||
* [ ] All functions and variable names follow Python naming conventions. | |||
* [ ] All function parameters and return values are annotated with Python [type hints](https://docs.python.org/3/library/typing.html). | |||
* [ ] All function parameters and return values are annotated with Python [mypy](https://docs.python.org/3/library/typing.html). |
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.
Please undo. These are type hints. Mypy and Pyright are both programs that test type hints.
* [ ] All functions have [doctests](https://docs.python.org/3/library/doctest.html) that pass the automated testing. | ||
* [ ] All new algorithms have a URL in its comments that points to Wikipedia or other similar explanation. | ||
* [ ] Modified/Added code follows [black](https://black.readthedocs.io/en/stable/the_black_code_style/current_style.html) and [flake8](https://flake8.pycqa.org/en/latest/) code style. |
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.
We have automated tests for this so we do not need to ask the contributor if they have done this.
Describe your change:
Checklist:
Fixes: #{$ISSUE_NO}
.