From 8b7a0bee090afb4ca734cd100fefa5ca3d502411 Mon Sep 17 00:00:00 2001 From: --global <--global> Date: Mon, 21 Oct 2024 15:01:45 +0000 Subject: [PATCH] fixed colors --- .submodules/setup/__main__.py | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.submodules/setup/__main__.py b/.submodules/setup/__main__.py index 8bd058c9..d2e82cef 100644 --- a/.submodules/setup/__main__.py +++ b/.submodules/setup/__main__.py @@ -63,11 +63,12 @@ def print_exit(error: bool): """ print() print( - Style.BRIGHT + "💥💣💥 " + + Style.BRIGHT + Fore.RED - + "💥💣💥 Finished with errors. 💥💣💥" + + "Finished with errors." + Style.RESET_ALL - + "\n\n" + + " 💥💣💥\n\n" + "This may not be an issue and may be occurring because you've run" + " this setup script before. Please read the above logs to discover if" + " further action is required." @@ -79,11 +80,12 @@ def print_exit(error: bool): ) + "." if error - else Style.BRIGHT + else "✨🍰✨ " + + Style.BRIGHT + Fore.GREEN - + "✨🍰✨ Finished without errors. ✨🍰✨" + + "Finished without errors." + Style.RESET_ALL - + "\n\n" + + " ✨🍰✨\n\n" + "Happy coding!" )