chore: fix max limit for password to keep it 64 chars
This commit is contained in:
parent
bebeaf2de3
commit
14637a8709
|
@ -15,7 +15,7 @@ def random_name_string():
|
|||
def random_password_string():
|
||||
return ''.join((random.choice(
|
||||
string.ascii_letters + string.digits + string.punctuation)
|
||||
for _ in range(10, 28))
|
||||
for _ in range(10, 65))
|
||||
)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue