From ade6c76208bd45c24cdd0e73bf3570e6a2bfa131 Mon Sep 17 00:00:00 2001 From: Munyoki Kilyungi Date: Wed, 13 Mar 2024 13:35:31 +0300 Subject: Delete a debug print query. Debugging this if necessary should be handled by pdb. * gn_auth/auth/authentication/users.py (fetch_users): Delete print statement. Signed-off-by: Munyoki Kilyungi --- gn_auth/auth/authentication/users.py | 1 - 1 file changed, 1 deletion(-) (limited to 'gn_auth/auth') diff --git a/gn_auth/auth/authentication/users.py b/gn_auth/auth/authentication/users.py index 7a41a14..cb6a68e 100644 --- a/gn_auth/auth/authentication/users.py +++ b/gn_auth/auth/authentication/users.py @@ -117,7 +117,6 @@ def fetch_users(conn: db.DbConnection, query = "SELECT * FROM users" + ( f" WHERE user_id IN ({params})" if len(ids) > 0 else "") - print(query) cursor.execute(query, tuple(str(the_id) for the_id in ids)) return tuple(User(UUID(row["user_id"]), row["email"], row["name"]) for row in cursor.fetchall()) -- cgit v1.2.3