summaryrefslogtreecommitdiff
path: root/jwt/algorithms.py
diff options
context:
space:
mode:
authoresneider <dariosn@gmail.com>2015-05-13 03:26:09 -0300
committeresneider <dariosn@gmail.com>2015-05-13 03:26:09 -0300
commit528318787eff3df062f2b55a5f79964aece74f18 (patch)
tree9171953cc2d64d3381309ab41e5ee168d74ae44c /jwt/algorithms.py
parent01b7fb0e65c8a6de5c67c1b0c9df0a4c27805ba8 (diff)
downloadpyjwt-528318787eff3df062f2b55a5f79964aece74f18.tar.gz
Fix python3 and pep8 issues
Diffstat (limited to 'jwt/algorithms.py')
-rw-r--r--jwt/algorithms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/jwt/algorithms.py b/jwt/algorithms.py
index fa4f4d3..d403314 100644
--- a/jwt/algorithms.py
+++ b/jwt/algorithms.py
@@ -3,7 +3,7 @@ import hmac
from .compat import constant_time_compare, string_types, text_type
from .exceptions import InvalidKeyError
-from .utils import raw_to_der_signature, der_to_raw_signature
+from .utils import der_to_raw_signature, raw_to_der_signature
try:
from cryptography.hazmat.primitives import hashes