From 0fbdba8a9c1d7e45c9277c15343c4aca50daef60 Mon Sep 17 00:00:00 2001 From: Who? <155328415+coddrago@users.noreply.github.com> Date: Tue, 27 May 2025 23:10:44 +0700 Subject: [PATCH] Update utils.py --- heroku/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/heroku/utils.py b/heroku/utils.py index 55f5e1a..95f9f1a 100644 --- a/heroku/utils.py +++ b/heroku/utils.py @@ -1127,7 +1127,7 @@ def rand(size: int, /) -> str: :return: Random string """ return "".join( - [random.choice("abcdefghijklmnopqrstuvwxyz1234567890!@$#$%*") for _ in range(size)] + [random.choice("abcdefghijklmnopqrstuvwxyz1234567890_") for _ in range(size)] )