Skip to content

Commit 49c3059

Browse files
committed
remove unused reference
1 parent 03c8583 commit 49c3059

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jose/backends/pycrypto_backend.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ def sign(self, msg):
149149
def verify(self, msg, sig):
150150
try:
151151
return PKCS1_v1_5.new(self.prepared_key).verify(self.hash_alg.new(msg), sig)
152-
except Exception as e:
152+
except Exception:
153153
return False
154154

155155
def is_public(self):

0 commit comments

Comments
 (0)