Browse Source

Update password_generator.py

main
Unbewohnte 4 years ago committed by GitHub
parent
commit
68e4a6a51f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      PasswordGenerator/password_generator.py

2
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

Loading…
Cancel
Save