summaryrefslogtreecommitdiff
path: root/tests/functional
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2021-11-04 10:08:07 +0100
committerGitHub <noreply@github.com>2021-11-04 10:08:07 +0100
commit65b552a7ce6734dc7bfe53a14342853750cc92a1 (patch)
tree40b35ab6eceb8998d4bb1a8a3713ada24bf27df9 /tests/functional
parentc532a171fadc9dc06bd97c58d490436456837031 (diff)
downloadpylint-git-65b552a7ce6734dc7bfe53a14342853750cc92a1.tar.gz
Remove unwanted non-breaking whitespaces in comment (#5256)
Diffstat (limited to 'tests/functional')
-rw-r--r--tests/functional/p/protocol_classes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional/p/protocol_classes.py b/tests/functional/p/protocol_classes.py
index 784da6098..df48fc5d6 100644
--- a/tests/functional/p/protocol_classes.py
+++ b/tests/functional/p/protocol_classes.py
@@ -30,5 +30,5 @@ class HasherFake(Protocol):
"""A hashing algorithm, e.g. :func:`hashlib.sha256`."""
def update(self, blob: bytes): # [no-self-use, unused-argument]
...
- def digest(self) -> bytes: # [no-self-use]
+ def digest(self) -> bytes: # [no-self-use]
...