-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
DOC: ex03 - no fix required #56861
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
DOC: ex03 - no fix required #56861
Conversation
Thanks @asishm |
pandas.DataFrame.plot.hexbin \ | ||
pandas.DataFrame.plot.line \ | ||
pandas.DataFrame.hist \ |
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.
Wait! For the function 'pandas.DataFrame.hist', my output for this function is
################################################################################
################################## Validation ##################################
################################################################################
1 Errors found for `pandas.DataFrame.hist`:
Return value has no description
I have created a PR to fix this: #56864
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.
NVM, just find out scripts/validate_docstrings.py --format=actions --errors=EX03 method-name
will output all errors not only the EX03 error if only provide one method name.
pandas/scripts/validate_docstrings.py
Lines 444 to 457 in c778746
def main(func_name, prefix, errors, output_format, ignore_deprecated, ignore_functions): | |
""" | |
Main entry point. Call the validation for one or for all docstrings. | |
""" | |
if func_name is None: | |
return print_validate_all_results( | |
prefix, | |
errors, | |
output_format, | |
ignore_deprecated, | |
ignore_functions, | |
) | |
else: | |
print_validate_one_results(func_name) |
Also mentioned here #56804 (comment)
Used this script to validate:
Let me know if it's too many at once.