summaryrefslogtreecommitdiff
path: root/tests/util.py
diff options
context:
space:
mode:
authorPaul Howarth <paul@city-fan.org>2022-03-21 09:34:27 +0000
committerPaul Howarth <paul@city-fan.org>2022-03-21 09:34:27 +0000
commit5dcdb2c1f258f66331f648503b0d482c4e326a43 (patch)
tree81fc079333f091c0dafaeae150e5c0e5554dfd55 /tests/util.py
parentc5b1714f88cb03d6802ca3c98f3b7f65bc7e4fd5 (diff)
downloadparamiko-5dcdb2c1f258f66331f648503b0d482c4e326a43.tar.gz
Remove unused variable, keep lint happy
Diffstat (limited to 'tests/util.py')
-rw-r--r--tests/util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/util.py b/tests/util.py
index ce96dc88..e6551ac7 100644
--- a/tests/util.py
+++ b/tests/util.py
@@ -159,7 +159,7 @@ def sha1_signing_unsupported():
)
message = b"Some dummy text"
try:
- signature = private_key.sign(
+ private_key.sign(
message,
padding.PSS(
mgf=padding.MGF1(hashes.SHA1()),