From 6362428118dab43defc1cb00a390f614f93bbc1f Mon Sep 17 00:00:00 2001 From: Parker Date: Wed, 18 Dec 2024 18:10:15 -0600 Subject: [PATCH] Remove debug print statement --- api/util/authentication.py | 1 - 1 file changed, 1 deletion(-) diff --git a/api/util/authentication.py b/api/util/authentication.py index 43b147a..021399a 100644 --- a/api/util/authentication.py +++ b/api/util/authentication.py @@ -45,7 +45,6 @@ def authenticate_user(db, username: str, password: str): if not user: return False if not verify_password(password, user.hashed_password): - print("WHY") return False return user