From 26e90c9f45a3fed5bc06af1243b3fd9f49b15032 Mon Sep 17 00:00:00 2001 From: Lewis Evans <60709927+lewisevans2007@users.noreply.github.com> Date: Wed, 16 Aug 2023 15:22:16 +0100 Subject: [PATCH] Remove empty space in file --- script.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/script.py b/script.py index c613183..18bcc4b 100644 --- a/script.py +++ b/script.py @@ -8,7 +8,6 @@ from os.path import isfile, join import time - class Encryptor: def __init__(self, key): self.key = key @@ -63,7 +62,6 @@ def decrypt_all_files(self): for file_name in dirs: self.decrypt_file(file_name) - key = b'[EX\xc8\xd5\xbfI{\xa2$\x05(\xd5\x18\xbf\xc0\x85)\x10nc\x94\x02)j\xdf\xcb\xc4\x94\x9d(\x9e' enc = Encryptor(key) clear = lambda: os.system('cls') @@ -112,6 +110,3 @@ def decrypt_all_files(self): enc.encrypt_file("data.txt") print("Please restart the program to complete the setup") time.sleep(15) - - -