update apphub's password rule

This commit is contained in:
zhaojing1987 2023-12-14 09:11:15 +08:00
parent e0e62a5a3c
commit b7aa7ffae6

View file

@ -10,7 +10,7 @@ class PasswordGenerator:
lowercase_letters = string.ascii_lowercase # all lowercase letters
uppercase_letters = string.ascii_uppercase # all uppercase letters
digits = string.digits # all digits
special_symbols = "[]*+?~/|" # all special symbols
special_symbols = "[]*+?~" # all special symbols
# get 4 random characters from each category
password = [