Skip to content

Commit 4fd7076

Browse files
committed
Remove unused variable
1 parent 7320fc4 commit 4fd7076

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_api_jws.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ def test_verify_signature_with_algo_none_throws_exception(self, jws, payload):
277277
b'.KEh186CjVw_Q8FadjJcaVnE7hO5Z9nHBbU8TgbhHcBY'
278278
)
279279

280-
with pytest.raises(InvalidAlgorithmError) as exc:
280+
with pytest.raises(InvalidAlgorithmError):
281281
jws.decode(example_jws, 'secret')
282282

283283
def test_invalid_crypto_alg(self, jws, payload):

0 commit comments

Comments
 (0)