summaryrefslogtreecommitdiff
path: root/oauthlib/openid/connect/core/grant_types/hybrid.py
diff options
context:
space:
mode:
authorJonathan Huot <JonathanHuot@users.noreply.github.com>2020-04-22 16:31:44 +0200
committerGitHub <noreply@github.com>2020-04-22 16:31:44 +0200
commit6875e3ac513a3828c3328d4f585d4c38b2b2c698 (patch)
tree3ebf7d0a8b521f91a769e1f31c9bf8d4cc75e110 /oauthlib/openid/connect/core/grant_types/hybrid.py
parent406653fc3018b8ae292234caef6df434cf612a52 (diff)
parent3e582846591e213ba8ec1780a5a5aadf69a090a2 (diff)
downloadoauthlib-6875e3ac513a3828c3328d4f585d4c38b2b2c698.tar.gz
Merge pull request #727 from antonrh/isort-integration
Diffstat (limited to 'oauthlib/openid/connect/core/grant_types/hybrid.py')
-rw-r--r--oauthlib/openid/connect/core/grant_types/hybrid.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/oauthlib/openid/connect/core/grant_types/hybrid.py b/oauthlib/openid/connect/core/grant_types/hybrid.py
index caf8547..a8dd564 100644
--- a/oauthlib/openid/connect/core/grant_types/hybrid.py
+++ b/oauthlib/openid/connect/core/grant_types/hybrid.py
@@ -5,11 +5,13 @@ oauthlib.openid.connect.core.grant_types
"""
import logging
-from oauthlib.oauth2.rfc6749.grant_types.authorization_code import AuthorizationCodeGrant as OAuth2AuthorizationCodeGrant
from oauthlib.oauth2.rfc6749.errors import InvalidRequestError
+from oauthlib.oauth2.rfc6749.grant_types.authorization_code import (
+ AuthorizationCodeGrant as OAuth2AuthorizationCodeGrant,
+)
-from .base import GrantTypeBase
from ..request_validator import RequestValidator
+from .base import GrantTypeBase
log = logging.getLogger(__name__)