Skip to content

Commit

Permalink
Fix codespell issue
Browse files Browse the repository at this point in the history
Signed-off-by: Simo Sorce <[email protected]>
  • Loading branch information
simo5 committed Mar 15, 2023
1 parent 0c31ee0 commit 381c5d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jwcrypto/jws.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ def _verify(self, alg, key, payload, signature, protected, header=None):
p = json_decode(protected)
if not isinstance(p, dict):
raise InvalidJWSSignature('Invalid Protected header')
# merge heders, and verify there are no duplicates
# merge headers, and verify there are no duplicates
if header:
if not isinstance(header, dict):
raise InvalidJWSSignature('Invalid Unprotected header')
Expand Down

0 comments on commit 381c5d1

Please sign in to comment.