We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
According to flake8's creator, the Application class from flake8 isn't meant to be used a library. As their sole maintainer isn't the original author, the library's internals could well change without warning, and this would break scripts/validate_docstrings.
Application
scripts/validate_docstrings
This part probably wants changing:
pandas/scripts/validate_docstrings.py
Lines 186 to 199 in 77ea98e
We're already writing the docstring to a temporary file, so we could just run flake8 on that via subprocess.run
flake8
subprocess.run
The text was updated successfully, but these errors were encountered:
take
Sorry, something went wrong.
hasan-yaman
Successfully merging a pull request may close this issue.
According to flake8's creator, the
Application
class from flake8 isn't meant to be used a library. As their sole maintainer isn't the original author, the library's internals could well change without warning, and this would breakscripts/validate_docstrings
.This part probably wants changing:
pandas/scripts/validate_docstrings.py
Lines 186 to 199 in 77ea98e
We're already writing the docstring to a temporary file, so we could just run
flake8
on that viasubprocess.run
The text was updated successfully, but these errors were encountered: