diff options
author | Parker <contact@pkrm.dev> | 2024-06-26 17:43:12 -0500 |
---|---|---|
committer | Parker <contact@pkrm.dev> | 2024-06-26 17:43:12 -0500 |
commit | cf7e9c0bc316c015e8822c8d8f2708be24b91bd1 (patch) | |
tree | 9b7088e0b45e0a3ad584e384cbded29642f4bb8b /code/cogs/shuffle.py | |
parent | e418e06ce6feaade6adffe4041576e0b1596523d (diff) |
Consolidate config validation and variables to `config.py`
Diffstat (limited to 'code/cogs/shuffle.py')
-rw-r--r-- | code/cogs/shuffle.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/code/cogs/shuffle.py b/code/cogs/shuffle.py index ba78957..7ba9cf9 100644 --- a/code/cogs/shuffle.py +++ b/code/cogs/shuffle.py @@ -4,7 +4,7 @@ from discord import app_commands from discord.ext import commands from cogs.music import Music -from global_variables import BOT_COLOR +from config import BOT_COLOR class Shuffle(commands.GroupCog, name="shuffle"): |