Skip to content

Commit

Permalink
Moved jwt.algorithms imports back to their original location
Browse files Browse the repository at this point in the history
  • Loading branch information
mark-adams committed Jan 6, 2015
1 parent 4f99ba4 commit a83790a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jwt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
from collections import Mapping
from datetime import datetime, timedelta

from jwt.algorithms import Algorithm, _register_default_algorithms
from jwt.utils import base64url_decode, base64url_encode

try:
Expand Down Expand Up @@ -45,6 +44,7 @@ def register_algorithm(alg_id, alg_obj):

_algorithms[alg_id] = alg_obj

from jwt.algorithms import Algorithm, _register_default_algorithms # NOQA
_register_default_algorithms()


Expand Down

0 comments on commit a83790a

Please sign in to comment.