Skip to content

Commit

Permalink
something is very broken
Browse files Browse the repository at this point in the history
  • Loading branch information
Policepigeon committed Sep 10, 2024
1 parent 93ec61b commit 7d0188a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PasswordComplexity.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
uppers = [l for l in password if ord(l) >= 65 and ord(l) <= 90]
lowers = [l for l in password if ord(l) >= 97 and ord(l) <= 122]
while int(len(password)) < 15:
input("Password too short, please input a new password")
passoword = input("Password too short, please input a new password")
uppers = [l for l in password if l.isupper()]
lowers = [l for l in password if l.islower()]
print(uppers)
Expand Down

0 comments on commit 7d0188a

Please sign in to comment.