Skip to content

Commit 817ec88

Browse files
Update create-envfile.py (#565)
1 parent 94d7daf commit 817ec88

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

create-envfile.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,8 @@ def shuffle(chars):
4242
random.shuffle(chars_as_list)
4343
return "".join(chars_as_list)
4444

45-
4645
_simple_chars = shuffle(string.ascii_letters + string.digits)
47-
_strong_chars = shuffle(
48-
string.ascii_letters
49-
+ string.digits
50-
+ string.punctuation.replace('"', "").replace("'", "").replace("`", "")
51-
)
46+
_strong_chars = shuffle(string.ascii_letters + string.digits + "#%*._~")
5247

5348

5449
def generate_env_file(args):

0 commit comments

Comments
 (0)