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
In code_checks.sh we have
cpplint --quiet --extensions=c,h --headers=h --recursive --filter=-readability/casting,-runtime/int,-build/include_subdir pandas/_libs/src/*.h pandas/_libs/src/parser pandas/_libs/ujson pandas/_libs/tslibs/src/datetime pandas/_libs/*.cpp
However, pandas/_libs/ujson doesn't exist.
pandas/_libs/ujson
I presume cpplint should be running on pandas/_libs/src/ujson/ instead?
cpplint
pandas/_libs/src/ujson/
The text was updated successfully, but these errors were encountered:
Yeah, that's true. It looks like pandas/_libs/src/ujson/ is the only possible path.
Adding the missing /src/ to the path will fix it, I suppose.
/src/
Sorry, something went wrong.
take
gustavocmaciel
Successfully merging a pull request may close this issue.
In code_checks.sh we have
However,
pandas/_libs/ujson
doesn't exist.I presume
cpplint
should be running onpandas/_libs/src/ujson/
instead?The text was updated successfully, but these errors were encountered: