We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 019c629 commit a0267d1Copy full SHA for a0267d1
1 file changed
brood/actions.py
@@ -372,10 +372,6 @@ def verify_password_strength(password: str) -> None:
372
f"Password must contain at least {required_len} characters"
373
)
374
375
- white_space_matches = SPACE_REGEX.search(password)
376
- if white_space_matches is not None:
377
- raise PasswordInvalidParameters(f"Password must not contain spaces")
378
-
379
380
def verify_username(username: str) -> None:
381
white_space_matches = SPACE_REGEX.search(username)
0 commit comments