Update utils.py

pull/144/head
Who? 2025-05-27 23:10:44 +07:00 committed by GitHub
parent 297c222a7d
commit 0fbdba8a9c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -1127,7 +1127,7 @@ def rand(size: int, /) -> str:
:return: Random string :return: Random string
""" """
return "".join( return "".join(
[random.choice("abcdefghijklmnopqrstuvwxyz1234567890!@$#$%*") for _ in range(size)] [random.choice("abcdefghijklmnopqrstuvwxyz1234567890_") for _ in range(size)]
) )