diff options
-rw-r--r-- | bot/exts/utilities/color.py | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/bot/exts/utilities/color.py b/bot/exts/utilities/color.py index e66592d2..57510488 100644 --- a/bot/exts/utilities/color.py +++ b/bot/exts/utilities/color.py @@ -17,15 +17,14 @@ 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" -with open(COLOR_JSON_PATH) as f: +with open("bot/resources/utilities/ryanzec_colours.json") as f: COLOR_MAPPING = json.load(f) |