From 352ee5b2f6a0e893d24f7904086646b531f65e4a Mon Sep 17 00:00:00 2001 From: Artem <106631540+rzc0d3r@users.noreply.github.com> Date: Fri, 20 Sep 2024 07:53:41 +0300 Subject: [PATCH] --skip-webdriver-menu is no longer used in repeat runs --- main.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/main.py b/main.py index cdb423d32..6037551ce 100644 --- a/main.py +++ b/main.py @@ -1,7 +1,7 @@ from modules.EmailAPIs import * # ---- Quick settings [for Developers to quickly change behavior without changing all files] ---- -VERSION = ['v1.5.0.8', 1508] +VERSION = ['v1.5.0.9', 1509] LOGO = f""" ███████╗███████╗███████╗████████╗ ██╗ ██╗███████╗██╗ ██╗ ██████╗ ███████╗███╗ ██╗ ██╔════╝██╔════╝██╔════╝╚══██╔══╝ ██║ ██╔╝██╔════╝╚██╗ ██╔╝██╔════╝ ██╔════╝████╗ ██║ @@ -426,11 +426,10 @@ def main(disable_exit=False): print(f'\n{Fore.MAGENTA}------------ Initializing of {Fore.YELLOW}{i+1} {Fore.MAGENTA}start ------------{Fore.RESET}\n') if i == 0: # the first run sets up the environment for subsequent runs, speeding them up main(disable_exit=True) - args['skip_webdriver_menu'] = True args['skip_update_check'] = True elif i+1 == args['repeat']: main() else: main(disable_exit=True) except KeyboardInterrupt: - continue \ No newline at end of file + continue