summaryrefslogtreecommitdiff
path: root/tests/functional/p/protocol_classes.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/functional/p/protocol_classes.py')
-rw-r--r--tests/functional/p/protocol_classes.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/functional/p/protocol_classes.py b/tests/functional/p/protocol_classes.py
index df48fc5d6..c17266c58 100644
--- a/tests/functional/p/protocol_classes.py
+++ b/tests/functional/p/protocol_classes.py
@@ -28,7 +28,7 @@ class Protocol: #pylint:disable=too-few-public-methods
class HasherFake(Protocol):
"""A hashing algorithm, e.g. :func:`hashlib.sha256`."""
- def update(self, blob: bytes): # [no-self-use, unused-argument]
+ def update(self, blob: bytes): # [unused-argument]
...
- def digest(self) -> bytes: # [no-self-use]
+ def digest(self) -> bytes:
...