From eed5c96986f6b7a62dbe1865ba553fd3789701ff Mon Sep 17 00:00:00 2001 From: mattiagiupponi <51856725+mattiagiupponi@users.noreply.github.com> Date: Fri, 11 Apr 2025 09:53:49 +0200 Subject: [PATCH] Update create-envfile.py --- create-envfile.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/create-envfile.py b/create-envfile.py index e061201a..7a733a87 100644 --- a/create-envfile.py +++ b/create-envfile.py @@ -42,13 +42,8 @@ def shuffle(chars): random.shuffle(chars_as_list) return "".join(chars_as_list) - _simple_chars = shuffle(string.ascii_letters + string.digits) -_strong_chars = shuffle( - string.ascii_letters - + string.digits - + string.punctuation.replace('"', "").replace("'", "").replace("`", "") -) +_strong_chars = shuffle(string.ascii_letters + string.digits + "#%*._~") def generate_env_file(args):