(remove): Removed temp comments

This commit is contained in:
Blake Ridgway 2025-02-15 19:00:00 -06:00
parent 51f154ab73
commit 1652079874
2 changed files with 1 additions and 2 deletions

View file

@ -10,7 +10,6 @@ class User(db.Model):
def __init__(self, username, password, hash_password=True):
self.username = username
# Optionally hash the password automatically.
if hash_password:
self.password = generate_password_hash(password, method="pbkdf2:sha256")
else: