From 308cf2fa464a04953c05abd5a5bac87e90f6d513 Mon Sep 17 00:00:00 2001 From: Artem <106631540+rzc0d3r@users.noreply.github.com> Date: Thu, 1 Aug 2024 21:10:44 +0300 Subject: [PATCH] Improving the Easter Egg --- main.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/main.py b/main.py index b31044605..f23781d7e 100644 --- a/main.py +++ b/main.py @@ -41,12 +41,15 @@ colored_logo = '' colors = [getattr(Fore, attr) for attr in dir(Fore) if not attr.startswith('__')] colors.remove(Fore.BLACK) + colors.remove(Fore.WHITE) + colors.remove(Fore.LIGHTWHITE_EX) for line in LOGO.split('\n'): for ch in line: color = random.choice(colors) colored_logo += (color+ch+Fore.RESET) colored_logo += '\n' - LOGO = colored_logo[:-1] + colored_logo += f'{Fore.GREEN}rzc0d3r{Fore.RESET} celebrates his {Fore.LIGHTRED_EX}birthday{Fore.RESET} today!!! :)\n' + LOGO = colored_logo # -- Quick settings [for Developers to quickly change behavior without changing all files] -- DEFAULT_EMAIL_API = '1secmail'