aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2024-04-20 18:04:24 +0300
committerFrederick Muriuki Muriithi2024-04-20 18:04:24 +0300
commite431a4a7c27f20564666cae0751da68271a444ba (patch)
tree0e489821bcbb409478ef30d0ba4bebe2a0989ef6
parent754a214de36e0f51dda82d4fa5f645f2f7e6ccc4 (diff)
downloadgn-auth-e431a4a7c27f20564666cae0751da68271a444ba.tar.gz
Remove unused import
-rw-r--r--gn_auth/auth/authentication/oauth2/grants/jwt_bearer_grant.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gn_auth/auth/authentication/oauth2/grants/jwt_bearer_grant.py b/gn_auth/auth/authentication/oauth2/grants/jwt_bearer_grant.py
index 492009c..346a1f0 100644
--- a/gn_auth/auth/authentication/oauth2/grants/jwt_bearer_grant.py
+++ b/gn_auth/auth/authentication/oauth2/grants/jwt_bearer_grant.py
@@ -6,7 +6,7 @@ from datetime import datetime, timedelta
from flask import request, current_app as app
from authlib.jose import jwt
-from authlib.jose.rfc7517.key_set import KeySet
+
from authlib.oauth2.rfc7523.jwt_bearer import JWTBearerGrant as _JWTBearerGrant
from authlib.oauth2.rfc7523.token import (
JWTBearerTokenGenerator as _JWTBearerTokenGenerator)