-
Notifications
You must be signed in to change notification settings - Fork 6
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
Merge #548
Conversation
kyu_2/evaluate_mathematical_expression/evaluate.py:15 in public function `calculate`: D205: 1 blank line required between summary line and description (found 0) Multi-line docstrings consist of a summary line just like a one-line docstring, followed by a blank line, followed by a more elaborate description. The summary line may be used by automatic indexing tools; it is important that it fits on one line and is separated from the rest of the docstring by a blank line. kyu_2/evaluate_mathematical_expression/evaluate.py:15 in public function `calculate`: D400: First line should end with a period (not 'n') The [first line of a] docstring is a phrase ending in a period.
./kyu_2/evaluate_mathematical_expression/evaluate.py:175:1: W293 blank line contains whitespace """ Normalizing string input by checking conditions. :param strings: list :param string: str :param temp: str :return: tuple(str, str) """
kyu_2/evaluate_mathematical_expression/evaluate.py:79 in public function `process_brackets`: D205: 1 blank line required between summary line and description (found 0) Multi-line docstrings consist of a summary line just like a one-line docstring, followed by a blank line, followed by a more elaborate description. The summary line may be used by automatic indexing tools; it is important that it fits on one line and is separated from the rest of the docstring by a blank line. kyu_2/evaluate_mathematical_expression/evaluate.py:79 in public function `process_brackets`: D400: First line should end with a period (not 't') The [first line of a] docstring is a phrase ending in a period.
kyu_2/evaluate_mathematical_expression/evaluate.py:173 in public function `check_conditions`: D401: First line should be in imperative mood (perhaps 'Normalize', not 'Normalizing') [Docstring] prescribes the function or method's effect as a command: ("Do this", "Return that"), not as a description; e.g. don't write "Returns the pathname ...".
pydocstyle implementation - Merge pull request #546 from iKostanOrg/master
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.
The pull request #548 has too many files changed.
We can only review pull requests with up to 300 changed files, and this pull request has 2196.
This pull request sets up GitHub code scanning for this repository. Once the scans have completed and the checks have passed, the analysis results for this pull request branch will appear on this overview. Once you merge this pull request, the 'Security' tab will show more code scanning analysis results (for example, for the default branch). Depending on your configuration and choice of analysis tool, future pull requests will be annotated with code scanning analysis results. For more information about GitHub code scanning, check out the documentation. |
Merge pull request #548 from iKostanOrg/master + pydocstyle implementation
Merge from master