Skip to content

Commit

Permalink
Removing accidently comma (no, this shouldn't be a tupple)
Browse files Browse the repository at this point in the history
  • Loading branch information
vimalloc committed Nov 28, 2016
1 parent b83d6e1 commit 2fec851
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jwt/algorithms.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def _get_crypto_algorithms():
crypto_algorithms['RS512'] = RSAAlgorithm(RSAAlgorithm.SHA512)
crypto_algorithms['ES256'] = ECAlgorithm(ECAlgorithm.SHA256)
crypto_algorithms['ES384'] = ECAlgorithm(ECAlgorithm.SHA384)
crypto_algorithms['ES521'] = ECAlgorithm(ECAlgorithm.SHA512),
crypto_algorithms['ES521'] = ECAlgorithm(ECAlgorithm.SHA512)
crypto_algorithms['ES512'] = ECAlgorithm(ECAlgorithm.SHA512)
crypto_algorithms['PS256'] = RSAPSSAlgorithm(RSAPSSAlgorithm.SHA256)
crypto_algorithms['PS384'] = RSAPSSAlgorithm(RSAPSSAlgorithm.SHA384)
Expand Down

0 comments on commit 2fec851

Please sign in to comment.