summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLandon GB <landogbland@gmail.com>2016-11-28 10:06:55 -0700
committerLandon GB <landogbland@gmail.com>2016-11-28 10:06:55 -0700
commit2fec85102ed8b149cbb3705305509db55d95b351 (patch)
treefdc4d199b41ad7a63b90c36188dc8821bae24be9
parentb83d6e1b7ca9fc4f5aeb183704bddcad5e8443b6 (diff)
downloadpyjwt-2fec85102ed8b149cbb3705305509db55d95b351.tar.gz
Removing accidently comma (no, this shouldn't be a tupple)
-rw-r--r--jwt/algorithms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/jwt/algorithms.py b/jwt/algorithms.py
index ae15503..895bff4 100644
--- a/jwt/algorithms.py
+++ b/jwt/algorithms.py
@@ -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)