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
Pylint was failing on astropy v6.0, with errors of type:
clmm/support/mock_data.py:418:33: E1101: Module 'astropy.units' has no 'deg' member; maybe 'dex'? (no-member)
This is a known error, and a discussion can be found here.
The implemented solution on PR #532 was to add an argument at .github/workflows/build_check.yml:
.github/workflows/build_check.yml
pylint clmm --ignored-classes=astropy.units
This should be re-evaluated in the future.
The text was updated successfully, but these errors were encountered:
It seems that pylint --generated-member= is also a solution, but I am not sure if it is a better one.
pylint --generated-member=
Sorry, something went wrong.
No branches or pull requests
Pylint was failing on astropy v6.0, with errors of type:
This is a known error, and a discussion can be found here.
The implemented solution on PR #532 was to add an argument at
.github/workflows/build_check.yml
:This should be re-evaluated in the future.
The text was updated successfully, but these errors were encountered: