Skip to content

Commit 2fec851

Browse files
committed
Removing accidently comma (no, this shouldn't be a tupple)
1 parent b83d6e1 commit 2fec851

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jwt/algorithms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def _get_crypto_algorithms():
5252
crypto_algorithms['RS512'] = RSAAlgorithm(RSAAlgorithm.SHA512)
5353
crypto_algorithms['ES256'] = ECAlgorithm(ECAlgorithm.SHA256)
5454
crypto_algorithms['ES384'] = ECAlgorithm(ECAlgorithm.SHA384)
55-
crypto_algorithms['ES521'] = ECAlgorithm(ECAlgorithm.SHA512),
55+
crypto_algorithms['ES521'] = ECAlgorithm(ECAlgorithm.SHA512)
5656
crypto_algorithms['ES512'] = ECAlgorithm(ECAlgorithm.SHA512)
5757
crypto_algorithms['PS256'] = RSAPSSAlgorithm(RSAPSSAlgorithm.SHA256)
5858
crypto_algorithms['PS384'] = RSAPSSAlgorithm(RSAPSSAlgorithm.SHA384)

0 commit comments

Comments
 (0)