Skip to content

Commit

Permalink
Bug fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
Alireza-Razavi authored Oct 6, 2022
1 parent 29e7b6e commit bdfc893
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ def entryPoint():
endRange = int(passwordLength.split("-")[1])

# The constant characters for all password lists
constChars = []
constChars = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '@', '+', '-', '?', '.', '_']

# Split the passed string character by character
chars = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '@', '+', '-', '?', '.', '_']
chars = []
for ch in characters:
# Check for lower case characters
if ch.isupper():
Expand Down

0 comments on commit bdfc893

Please sign in to comment.