diff options
author | Mark Adams <mark@markadams.me> | 2015-01-06 08:20:26 -0600 |
---|---|---|
committer | Mark Adams <mark@markadams.me> | 2015-01-18 10:29:21 -0600 |
commit | 3958141e922e29e9c6342aded58e9707226b91a2 (patch) | |
tree | fc98119e939b818857d74bad197af6dbbd98ea19 /jwt/algorithms.py | |
parent | 9b0f0f13d9c2f74d36d0c4304a024fa7652392be (diff) | |
download | pyjwt-3958141e922e29e9c6342aded58e9707226b91a2.tar.gz |
Fixed some style issues (reordered imports, removed unused imports, PEP8, etc.)
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 ab9ae03..427dafd 100644 --- a/jwt/algorithms.py +++ b/jwt/algorithms.py @@ -3,7 +3,7 @@ import hmac import sys from jwt import register_algorithm -from utils import constant_time_compare +from jwt.utils import constant_time_compare if sys.version_info >= (3, 0, 0): unicode = str |