diff options
author | Frederick Muriuki Muriithi | 2024-04-20 18:04:24 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-04-20 18:04:24 +0300 |
commit | e431a4a7c27f20564666cae0751da68271a444ba (patch) | |
tree | 0e489821bcbb409478ef30d0ba4bebe2a0989ef6 /gn_auth | |
parent | 754a214de36e0f51dda82d4fa5f645f2f7e6ccc4 (diff) | |
download | gn-auth-e431a4a7c27f20564666cae0751da68271a444ba.tar.gz |
Remove unused import
Diffstat (limited to 'gn_auth')
-rw-r--r-- | gn_auth/auth/authentication/oauth2/grants/jwt_bearer_grant.py | 2 |
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) |