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
I searched, but didn't find any issue exactly like this. Nearest ones:
Considered making this a bug, but maybe it just falls under "haven't gotten around to it yet".
import typing_extensions as tex @tex.runtime class Hasher(tex.Protocol): """A hashing algorithm, e.g. :func:`hashlib.sha256`.""" def update(self, bs: bytes): ... def digest(self) -> bytes: ...
no-self-use and unused-argument diagnostics on the methods.
no-self-use
unused-argument
No diagnostics.
pylint 2.3.1 astroid 2.2.5 Python 3.6.8+ (heads/3.6:e5f9f4a, May 6 2019, 11:53:17) [GCC 7.4.0]
The text was updated successfully, but these errors were encountered:
4bcbe9b
Thank you, @PCManticore!
Sorry, something went wrong.
No branches or pull requests
I searched, but didn't find any issue exactly like this. Nearest ones:
Considered making this a bug, but maybe it just falls under "haven't gotten around to it yet".
Steps to reproduce
Current behavior
no-self-use
andunused-argument
diagnostics on the methods.Expected behavior
No diagnostics.
pylint --version output
The text was updated successfully, but these errors were encountered: