Skip to content

Commit e8343d3

Browse files
committed
fix bare except
1 parent 05708c9 commit e8343d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cryptojwt/jws/hmac.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,5 @@ def verify(self, msg, sig, key):
4444
h.update(msg)
4545
h.verify(sig)
4646
return True
47-
except:
47+
except Exception:
4848
return False

0 commit comments

Comments
 (0)