diff --git a/webserver/restapi.py b/webserver/restapi.py index 874497f..097899f 100644 --- a/webserver/restapi.py +++ b/webserver/restapi.py @@ -61,7 +61,6 @@ class User(db.Model): def check_password(self, password: str) -> bool: password = password + app_restapi.config["PEPPER"] - logger.debug(f"Checking password {self.password_hash} | {password}") return check_password_hash(self.password_hash, password) def to_dict(self):