From b7b743001eae170792c5f533757fa40d86a9788a Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Fri, 20 Jan 2023 12:43:47 +0300 Subject: mypy: minor fixes to typing errors --- gn3/auth/authentication/oauth2/models/oauth2client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gn3/auth/authentication') diff --git a/gn3/auth/authentication/oauth2/models/oauth2client.py b/gn3/auth/authentication/oauth2/models/oauth2client.py index ac3bdb1..70b8f59 100644 --- a/gn3/auth/authentication/oauth2/models/oauth2client.py +++ b/gn3/auth/authentication/oauth2/models/oauth2client.py @@ -135,7 +135,7 @@ def client(conn: db.DbConnection, client_id: uuid.UUID, "SELECT * FROM oauth2_clients WHERE client_id=?", (str(client_id),)) result = cursor.fetchone() the_user = user or user_by_id(conn, result["user_id"]).maybe( - None, lambda usr: usr) + None, lambda usr: usr)# type: ignore if result: return Just( OAuth2Client(uuid.UUID(result["client_id"]), -- cgit v1.2.3