From 68e4a6a51f0310812fb6b89393aed2cf3f899d54 Mon Sep 17 00:00:00 2001 From: Unbewohnte <65883674+Unbewohnte@users.noreply.github.com> Date: Thu, 5 Nov 2020 20:00:45 +0300 Subject: [PATCH] Update password_generator.py --- PasswordGenerator/password_generator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PasswordGenerator/password_generator.py b/PasswordGenerator/password_generator.py index ad8944a..f570c16 100644 --- a/PasswordGenerator/password_generator.py +++ b/PasswordGenerator/password_generator.py @@ -13,7 +13,7 @@ digits_pun = list(string.ascii_lowercase*10 + string.digits*10 + string.punctuat upp_pun = list(string.ascii_lowercase*10 + string.ascii_uppercase*10 +string.punctuation*5) -#Yeah, spaghetti code, but couldn`t come up with a better idea +#Yeah, bad code, but couldn`t come up with a better idea def generate(LEN,flags=None,how_many=None): passwords = [] U,D,P = None,None,None