about summary refs log tree commit diff
path: root/gn_auth/auth/authorisation/users/views.py
diff options
context:
space:
mode:
authorMunyoki Kilyungi2025-05-06 09:16:27 +0300
committerMunyoki Kilyungi2025-05-06 09:20:52 +0300
commit5cad25d44bc789e3f7de417cbe3b40b5073d2294 (patch)
tree9790631afba62b38ac85b075d0fab8780c70bcff /gn_auth/auth/authorisation/users/views.py
parent55e9e13422a7a5ee4650597e86ac8629de83c383 (diff)
downloadgn-auth-5cad25d44bc789e3f7de417cbe3b40b5073d2294.tar.gz
Fix failing mypy.
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
Diffstat (limited to 'gn_auth/auth/authorisation/users/views.py')
-rw-r--r--gn_auth/auth/authorisation/users/views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gn_auth/auth/authorisation/users/views.py b/gn_auth/auth/authorisation/users/views.py
index f8ccdbe..b37164a 100644
--- a/gn_auth/auth/authorisation/users/views.py
+++ b/gn_auth/auth/authorisation/users/views.py
@@ -205,7 +205,7 @@ def register_user() -> Response:
             with db.cursor(conn) as cursor:
                 user, _hashed_password = set_user_password(
                     cursor, save_user(
-                        cursor, email["email"], user_name), password)
+                        cursor, email["email"], user_name), password)  # type: ignore
                 assign_default_roles(cursor, user)
                 send_verification_email(conn,
                                         user,