Fixed typo.

This commit is contained in:
Cutieguwu
2024-04-12 13:59:42 -04:00
parent 0ad593d631
commit 40cc760440

View File

@@ -39,10 +39,10 @@ def decrypt(dataEncoded: str, keyDecrypt: str):
return dataDecrypted
with open("dataEncoded.txt", "r") as f:
data = "".join(c for c in f.readlines() if c != "\n")
data = "".join(c for c in f.read() if c != "\n")
with open("key.txt", "r") as f:
key = "".join(c for c in f.realines() if c != "\n")
key = "".join(c for c in f.read() if c != "\n")
key = "qwertyuiopasdfghjklzxcvbnm" # Temporary faux testing key.