From ead76074f54a0ce7844bce2a8bb2a06095d07af8 Mon Sep 17 00:00:00 2001 From: Richard Mwewa <74001397+rly0nheart@users.noreply.github.com> Date: Sun, 25 Dec 2022 02:33:22 +0200 Subject: [PATCH] Update message_prefixes.py --- octosuite/message_prefixes.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/octosuite/message_prefixes.py b/octosuite/message_prefixes.py index 98e98aa..9b71391 100644 --- a/octosuite/message_prefixes.py +++ b/octosuite/message_prefixes.py @@ -1,4 +1,4 @@ -from octosuite.colors import red, white, green, reset +from octosuite.config import red, white, green, yellow, reset """ message prefixes that show what @@ -6,8 +6,8 @@ a notification in OctoSuite might be all about. This might not be very important but I think it's better to know the severity of the notifications you get in a program. """ PROMPT = f"{white}[{green}PROMPT{white}]{reset}" -WARNING = f"{white}[{red}WARNING{white}]{reset}" +WARNING = f"{white}[{yellow}WARNING{white}]{reset}" ERROR = f"{white}[{red}ERROR{white}]{reset}" POSITIVE = f"{white}[{green}POSITIVE{white}]{reset}" NEGATIVE = f"{white}[{red}NEGATIVE{white}]{reset}" -INFO = f"{white}[{green}INFO{white}]{reset}" \ No newline at end of file +INFO = f"{white}[{green}INFO{white}]{reset}"