diff --git a/octosuite/message_prefixes.py b/octosuite/message_prefixes.py new file mode 100644 index 0000000..f65d0e4 --- /dev/null +++ b/octosuite/message_prefixes.py @@ -0,0 +1,14 @@ +from octosuite.colors import red, white, green, reset + +""" +MessagePrefix *Even here, I couldn't think of a good name.* The Attributes class holds the signs/symbols that show what +a notification in OctoSuite might be all about. This might not be very important or necessary in some cases, +but I think it's better to know the severity of the notifications you get in a program. +""" +class MessagePrefix: + prompt = f"{white}[{green}?{white}]{reset}" + warning = f"{white}[{red}!{white}]{reset}" + error = f"{white}[{red}x{white}]{reset}" + positive = f"{white}[{green}+{white}]{reset}" + negative = f"{white}[{red}-{white}]{reset}" + info = f"{white}[{green}*{white}]{reset}" diff --git a/octosuite/sign_vars.py b/octosuite/sign_vars.py deleted file mode 100644 index dceb359..0000000 --- a/octosuite/sign_vars.py +++ /dev/null @@ -1,14 +0,0 @@ -from octosuite.colors import red, white, green, reset - -""" -SignVar *Even here, I couldn't think of a good name.* The Attributes class holds the signs/symbols that show what -a notification in OctoSuite might be all about. This might not be very important or necessary in some cases, -but I think it's better to know the severity of the notifications you get in a program. -""" -class SignVar: - prompt = f"{white}[{green} ? {white}]{reset}" - warning = f"{white}[{red} ! {white}]{reset}" - error = f"{white}[{red} x {white}]{reset}" - positive = f"{white}[{green} + {white}]{reset}" - negative = f"{white}[{red} - {white}]{reset}" - info = f"{white}[{green} * {white}]{reset}"