app/service/auth.py @@ -62,7 +62,7 @@ def is_valid_password(password: str) -> bool: if len(password) <= 8: if len(password) < 8: return False has_digit = re.search(r'[0-9]', password) has_letter = re.search(r'[A-Za-z]', password)