summaryrefslogtreecommitdiff
path: root/oauthlib/oauth2/rfc6749/endpoints/metadata.py
diff options
context:
space:
mode:
authorAnton Ruhlov <anton@paxful.com>2020-04-10 15:12:40 +0300
committerAnton Ruhlov <anton@paxful.com>2020-04-10 15:12:40 +0300
commit1a1df2280f000b1f2f05b5304150ef7826cc9d24 (patch)
treee72a18080a4b7f404ed1117d7eaf502eaaf27e1d /oauthlib/oauth2/rfc6749/endpoints/metadata.py
parent809428d597b57215c1bb996ff5f9ca7f57f3aaad (diff)
downloadoauthlib-1a1df2280f000b1f2f05b5304150ef7826cc9d24.tar.gz
Sorted oauthlib imports per isort 4.3.21
Diffstat (limited to 'oauthlib/oauth2/rfc6749/endpoints/metadata.py')
-rw-r--r--oauthlib/oauth2/rfc6749/endpoints/metadata.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/oauthlib/oauth2/rfc6749/endpoints/metadata.py b/oauthlib/oauth2/rfc6749/endpoints/metadata.py
index 6bc078d..815f4b0 100644
--- a/oauthlib/oauth2/rfc6749/endpoints/metadata.py
+++ b/oauthlib/oauth2/rfc6749/endpoints/metadata.py
@@ -11,13 +11,12 @@ import copy
import json
import logging
-from .base import BaseEndpoint, catch_errors_and_unavailability
+from .. import grant_types
from .authorization import AuthorizationEndpoint
+from .base import BaseEndpoint, catch_errors_and_unavailability
from .introspect import IntrospectEndpoint
-from .token import TokenEndpoint
from .revocation import RevocationEndpoint
-from .. import grant_types
-
+from .token import TokenEndpoint
log = logging.getLogger(__name__)