aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorParker <contact@pkrm.dev>2024-12-18 18:10:15 -0600
committerParker <contact@pkrm.dev>2024-12-18 18:10:15 -0600
commit6362428118dab43defc1cb00a390f614f93bbc1f (patch)
treeaeb0535095f1be7cee54c5bdf5c60c5679a525fd
parente3eb82e318f1e040515436fcb454e1c58c4648d2 (diff)
Remove debug print statement
-rw-r--r--api/util/authentication.py1
1 files changed, 0 insertions, 1 deletions
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