summaryrefslogtreecommitdiff
path: root/oauthlib/oauth2/rfc6749/grant_types/authorization_code.py
diff options
context:
space:
mode:
authorOmer Katz <omerk@checkpoint.com>2017-09-17 14:14:31 +0300
committerOmer Katz <omerk@checkpoint.com>2017-09-17 14:14:31 +0300
commit0218f8da4f6405c6a38ea7e01feacf73b35dd698 (patch)
tree7497e617e696a96eb7d66fadf9c933394b12a05d /oauthlib/oauth2/rfc6749/grant_types/authorization_code.py
parentc00a194e2986e75da4acf05ec413ab21cb6d46da (diff)
downloadoauthlib-0218f8da4f6405c6a38ea7e01feacf73b35dd698.tar.gz
Sorted imports.
Diffstat (limited to 'oauthlib/oauth2/rfc6749/grant_types/authorization_code.py')
-rw-r--r--oauthlib/oauth2/rfc6749/grant_types/authorization_code.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/oauthlib/oauth2/rfc6749/grant_types/authorization_code.py b/oauthlib/oauth2/rfc6749/grant_types/authorization_code.py
index 5ac0bb3..8661c35 100644
--- a/oauthlib/oauth2/rfc6749/grant_types/authorization_code.py
+++ b/oauthlib/oauth2/rfc6749/grant_types/authorization_code.py
@@ -3,7 +3,7 @@
oauthlib.oauth2.rfc6749.grant_types
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
"""
-from __future__ import unicode_literals, absolute_import
+from __future__ import absolute_import, unicode_literals
import json
import logging
@@ -11,8 +11,8 @@ import logging
from oauthlib import common
from oauthlib.uri_validate import is_absolute_uri
-from .base import GrantTypeBase
from .. import errors
+from .base import GrantTypeBase
log = logging.getLogger(__name__)