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
Python code which defines "magic methods" (a.k.a. "dunder methods") can lead to a lot of errors from flake8-spellcheck
flake8-spellcheck
For example, each of the following methods will raise errors, because eq, gt, radd, etc are not valid English words
eq
gt
radd
class Fred: def __eq__(self, other): pass def __gt__(self, other): pass def __radd__(self, other): pass def __aiter__(self, other): pass def __matmul__(self, other): pass def __instancecheck__(self, other): pass
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Python code which defines "magic methods" (a.k.a. "dunder methods") can lead to a lot of errors from
flake8-spellcheck
For example, each of the following methods will raise errors, because
eq
,gt
,radd
, etc are not valid English wordsThe text was updated successfully, but these errors were encountered: