chore: fix max limit for password to keep it 64 chars

This commit is contained in:
Anastasiya Semenkevich 2024-10-11 17:14:42 +03:00 committed by Khushboo-dev-cpp
parent bebeaf2de3
commit 14637a8709
1 changed files with 1 additions and 1 deletions

View File

@ -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))
)