From c165942a58fe10f67f3cafcbc1e37ff5e413ff7f Mon Sep 17 00:00:00 2001
From: Munyoki Kilyungi
Date: Wed, 13 Mar 2024 18:22:59 +0300
Subject: Rename "the_code" to "_code".

* gn_auth/auth/authentication/oauth2/grants/authorisation_code_grant.py
(__query_authorization_code__): Rename the_code -> _code.

Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
---
 .../auth/authentication/oauth2/grants/authorisation_code_grant.py    | 5 +++--
 1 file changed, 3 insertions(+), 2 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 98c36ee..02a876b 100644
--- a/gn_auth/auth/authentication/oauth2/grants/authorisation_code_grant.py
+++ b/gn_auth/auth/authentication/oauth2/grants/authorisation_code_grant.py
@@ -82,8 +82,9 @@ def __query_authorization_code__(
     This is found to be necessary since the `AuthorizationCodeGrant` class(es)
     do not have a way to pass the database connection."""
     def __auth_code__(conn) -> str:
-        the_code = authorisation_code(conn, code, client)
-        return the_code.maybe(None, lambda cde: cde) # type: ignore[misc, arg-type, return-value]
+        _code = authorisation_code(conn, code, client)
+        # type: ignore[misc, arg-type, return-value]
+        return _code.maybe(None, lambda cde: cde)
 
     return with_db_connection(__auth_code__)
 
-- 
cgit v1.2.3