Skip to content

Commit

Permalink
fixed colors
Browse files Browse the repository at this point in the history
  • Loading branch information
--global committed Oct 21, 2024
1 parent 3dd24a4 commit 8b7a0be
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .submodules/setup/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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."
Expand All @@ -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!"
)

Expand Down

0 comments on commit 8b7a0be

Please sign in to comment.