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 output:
W:245,65: Redefining built-in 'slice' (redefined-builtin) W:263,12: Redefining built-in 'slice' (redefined-builtin) W:341, 8: Redefining built-in 'slice' (redefined-builtin) W:409,10: Redefining built-in 'slice' (redefined-builtin) W:527, 4: Redefining built-in 'slice' (redefined-builtin)
The text was updated successfully, but these errors were encountered:
This is caused by the fact variable name is the same as built-in function name. From ceres.py:
@property def slices(self): if self.sliceCache: if self.sliceCachingBehavior == 'all': for slice in self.sliceCache: yield slice [ ... ]
It shouldn't be a problem.
Sorry, something went wrong.
No branches or pull requests
Pylint output:
The text was updated successfully, but these errors were encountered: