diff --git a/requirements.txt b/requirements.txt index 00fbf6d..cc875da 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ requests colorama -py7zr +py7zr \ No newline at end of file diff --git a/src/sources.py b/src/sources.py index adf0dbc..fd79695 100644 --- a/src/sources.py +++ b/src/sources.py @@ -69,7 +69,8 @@ def print_slate_text(): {blue}╚ ''' print(art) - time.sleep(2) + print("Press Enter to continue...") + input() def clear_terminal(): os.system('cls' if os.name == 'nt' else 'clear') @@ -144,7 +145,7 @@ def load_sources(): data = json.load(file) return data.get('files', []) except FileNotFoundError: - print(Fore.RED + Style.BRIGHT + "sources.json file not found in the root directory.") + print(Fore.RED + Style.BRIGHT + "sources.json file not found in the root directory. Ensure the filename is exact.") return [] except json.JSONDecodeError: print(Fore.RED + Style.BRIGHT + "Error decoding JSON from sources.json.")