From bc712d3c392895e549b019e3cbe20c9a9c687576 Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Fri, 24 May 2024 09:59:10 -0500 Subject: Linting: reorganise imports. --- gn_auth/auth/authentication/oauth2/grants/jwt_bearer_grant.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'gn_auth/auth') 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 d75f730..b96febb 100644 --- a/gn_auth/auth/authentication/oauth2/grants/jwt_bearer_grant.py +++ b/gn_auth/auth/authentication/oauth2/grants/jwt_bearer_grant.py @@ -1,10 +1,9 @@ """JWT as Authorisation Grant""" import uuid +from dataclasses import asdict from flask import current_app as app -from dataclasses import asdict - from authlib.common.security import generate_token from authlib.oauth2.rfc7523.jwt_bearer import JWTBearerGrant as _JWTBearerGrant from authlib.oauth2.rfc7523.token import ( -- cgit v1.2.3