diff options
author | Munyoki Kilyungi | 2025-05-06 09:16:27 +0300 |
---|---|---|
committer | Munyoki Kilyungi | 2025-05-06 09:20:52 +0300 |
commit | 5cad25d44bc789e3f7de417cbe3b40b5073d2294 (patch) | |
tree | 9790631afba62b38ac85b075d0fab8780c70bcff /gn_auth/auth/authentication/oauth2/views.py | |
parent | 55e9e13422a7a5ee4650597e86ac8629de83c383 (diff) | |
download | gn-auth-5cad25d44bc789e3f7de417cbe3b40b5073d2294.tar.gz |
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
Diffstat (limited to 'gn_auth/auth/authentication/oauth2/views.py')
-rw-r--r-- | gn_auth/auth/authentication/oauth2/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gn_auth/auth/authentication/oauth2/views.py b/gn_auth/auth/authentication/oauth2/views.py index d0b55b4..0e2c4eb 100644 --- a/gn_auth/auth/authentication/oauth2/views.py +++ b/gn_auth/auth/authentication/oauth2/views.py @@ -77,7 +77,7 @@ def authorise(): try: email = validate_email( form.get("user:email"), check_deliverability=False) - user = user_by_email(conn, email["email"]) + user = user_by_email(conn, email["email"]) # type: ignore if valid_login(conn, user, form.get("user:password", "")): if not user.verified: return redirect( |