Skip to content

Commit

Permalink
Merge pull request #167 from Termindev/main
Browse files Browse the repository at this point in the history
  • Loading branch information
logicguy1 authored Sep 5, 2022
2 parents 63d7070 + 0d6f3d3 commit e246458
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def main(self): # The main function contains the most important code
chars[:0] = string.ascii_letters + string.digits

# generate codes faster than using random.choice
c = numpy.random.choice(chars, size=[num, 23])
c = numpy.random.choice(chars, size=[num, 16])
for s in c: # Loop over the amount of codes to check
try:
code = ''.join(x for x in s)
Expand Down

0 comments on commit e246458

Please sign in to comment.