Remove debug print statement

This commit is contained in:
Parker M. 2024-12-18 18:10:15 -06:00
parent e3eb82e318
commit 6362428118
Signed by: parker
GPG Key ID: 505ED36FC12B5D5E

View File

@ -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