From 381c5d12768fd6e09f26630aef8f60c7874cc9d0 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Wed, 15 Mar 2023 10:34:29 -0400 Subject: [PATCH] Fix codespell issue Signed-off-by: Simo Sorce --- jwcrypto/jws.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jwcrypto/jws.py b/jwcrypto/jws.py index d0b41f9..a8284d9 100644 --- a/jwcrypto/jws.py +++ b/jwcrypto/jws.py @@ -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')