diff options
author | esneider <dariosn@gmail.com> | 2015-05-13 03:26:09 -0300 |
---|---|---|
committer | esneider <dariosn@gmail.com> | 2015-05-13 03:26:09 -0300 |
commit | 528318787eff3df062f2b55a5f79964aece74f18 (patch) | |
tree | 9171953cc2d64d3381309ab41e5ee168d74ae44c /jwt/algorithms.py | |
parent | 01b7fb0e65c8a6de5c67c1b0c9df0a4c27805ba8 (diff) | |
download | pyjwt-528318787eff3df062f2b55a5f79964aece74f18.tar.gz |
Fix python3 and pep8 issues
Diffstat (limited to 'jwt/algorithms.py')
-rw-r--r-- | jwt/algorithms.py | 2 |
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 |