Skip to content

Commit

Permalink
--skip-webdriver-menu is no longer used in repeat runs
Browse files Browse the repository at this point in the history
  • Loading branch information
rzc0d3r authored Sep 20, 2024
1 parent 55367ac commit 352ee5b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions main.py
Original file line number Diff line number Diff line change
@@ -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"""
███████╗███████╗███████╗████████╗ ██╗ ██╗███████╗██╗ ██╗ ██████╗ ███████╗███╗ ██╗
██╔════╝██╔════╝██╔════╝╚══██╔══╝ ██║ ██╔╝██╔════╝╚██╗ ██╔╝██╔════╝ ██╔════╝████╗ ██║
Expand Down Expand Up @@ -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
continue

0 comments on commit 352ee5b

Please sign in to comment.