diff options
author | 2021-09-27 09:49:42 -0400 | |
---|---|---|
committer | 2021-09-27 09:49:42 -0400 | |
commit | 443cd600e4060b4b0f58382e7da07ca245cfca00 (patch) | |
tree | eef4b6f6c9c99de367393134c523194a903affd3 | |
parent | chore: make cmyk_to_rgb def multiline (diff) |
chore: remove doubled new line in ERROR_MSG
-rw-r--r-- | bot/exts/utilities/color.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/bot/exts/utilities/color.py b/bot/exts/utilities/color.py index 9e2af325..7c7f4bba 100644 --- a/bot/exts/utilities/color.py +++ b/bot/exts/utilities/color.py @@ -17,11 +17,11 @@ logger = logging.getLogger(__name__) ERROR_MSG = """The color code {user_color} is not a possible color combination. -\nThe range of possible values are: -\nRGB & HSV: 0-255 -\nCMYK: 0-100% -\nHSL: 0-360 degrees -\nHex: #000000-#FFFFFF +The range of possible values are: +RGB & HSV: 0-255 +CMYK: 0-100% +HSL: 0-360 degrees +Hex: #000000-#FFFFFF """ COLOR_JSON_PATH = "bot/resources/utilities/ryanzec_colours.json" |