diff options
Diffstat (limited to 'jwt/algorithms.py')
-rw-r--r-- | jwt/algorithms.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/jwt/algorithms.py b/jwt/algorithms.py index dec6577..2e4a2e8 100644 --- a/jwt/algorithms.py +++ b/jwt/algorithms.py @@ -1,8 +1,8 @@ import hashlib import hmac -from jwt import register_algorithm -from jwt.compat import constant_time_compare, string_types, text_type +from .api import register_algorithm +from .compat import constant_time_compare, string_types, text_type try: from cryptography.hazmat.primitives import interfaces, hashes |