Skip to content

Commit

Permalink
Update __init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
AnataarXVI committed Feb 18, 2023
1 parent dd7d19a commit 92ab552
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/__init__.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
from queue import Queue

## Open the hash file
with open("hash.txt","r") as hash:
with open("./hash.txt","r") as hash:
test_hash = hash.read().split()


## Open the wordlist
with open("wordlist.txt","r", encoding="latin-1") as wordlist:
with open("./wordlist.txt","r", encoding="latin-1") as wordlist:

raw_words = wordlist.read().split()

Expand Down

0 comments on commit 92ab552

Please sign in to comment.