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/help.py | |
parent | e418e06ce6feaade6adffe4041576e0b1596523d (diff) |
Consolidate config validation and variables to `config.py`
Diffstat (limited to 'code/cogs/help.py')
-rw-r--r-- | code/cogs/help.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/code/cogs/help.py b/code/cogs/help.py index ee1ad19..2cf0f54 100644 --- a/code/cogs/help.py +++ b/code/cogs/help.py @@ -2,7 +2,7 @@ import discord from discord.ext import commands from discord import app_commands -from global_variables import BOT_COLOR, BOT_INVITE_LINK +from config import BOT_COLOR, BOT_INVITE_LINK commands_and_descriptions = { "play": { |