aboutsummaryrefslogtreecommitdiff
path: root/gn_auth/auth/authentication/oauth2/grants/authorisation_code_grant.py
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2024-04-23 17:08:18 +0300
committerFrederick Muriuki Muriithi2024-04-23 17:08:18 +0300
commitb4278a0dfd1aaa1c95cc811aa15f3cf9ea4a54bc (patch)
treee6495dbd699515258aa841c6722cc085c626be1c /gn_auth/auth/authentication/oauth2/grants/authorisation_code_grant.py
parentd4b8d19a74607468c21a247f07f39c8a18e59993 (diff)
downloadgn-auth-b4278a0dfd1aaa1c95cc811aa15f3cf9ea4a54bc.tar.gz
pylint: Fix linting errors.
Diffstat (limited to 'gn_auth/auth/authentication/oauth2/grants/authorisation_code_grant.py')
-rw-r--r--gn_auth/auth/authentication/oauth2/grants/authorisation_code_grant.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/gn_auth/auth/authentication/oauth2/grants/authorisation_code_grant.py b/gn_auth/auth/authentication/oauth2/grants/authorisation_code_grant.py
index ae604df..a40292e 100644
--- a/gn_auth/auth/authentication/oauth2/grants/authorisation_code_grant.py
+++ b/gn_auth/auth/authentication/oauth2/grants/authorisation_code_grant.py
@@ -26,16 +26,16 @@ class AuthorisationCodeGrant(grants.AuthorizationCodeGrant):
GRANT_TYPE = "authorization_code"
RESPONSE_TYPES = {'code'}
- def create_authorization_response(self, redirect: str, grant_user):
+ def create_authorization_response(self, redirect_uri: str, grant_user):
"""Add some data to the URI"""
- response = super().create_authorization_response(redirect, grant_user)
+ response = super().create_authorization_response(
+ redirect_uri, grant_user)
headers = dict(response[-1])
headers = {
**headers,
"Location": f"{headers['Location']}&user_id={grant_user.user_id}"
}
- return (response[0], response[1], [
- (header, value) for header, value in headers.items()])
+ return (response[0], response[1], list(headers.items()))
def save_authorization_code(self, code, request):
"""Persist the authorisation code to database."""