diff options
author | Parker <contact@pkrm.dev> | 2024-07-20 18:15:15 -0500 |
---|---|---|
committer | Parker <contact@pkrm.dev> | 2024-07-20 18:15:15 -0500 |
commit | fda03dff62cc7967bd279777a012a22ddaa6ad34 (patch) | |
tree | ea6fb63db30bca8959d0e25e6333af8d7c9bbb7f /code/utils/command_tree.py | |
parent | d69807b2e4302febbac55050ee3efbdee08b8e50 (diff) |
Move files to `utils` folder
Diffstat (limited to 'code/utils/command_tree.py')
-rw-r--r-- | code/utils/command_tree.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/code/utils/command_tree.py b/code/utils/command_tree.py index 504d3a9..947a58c 100644 --- a/code/utils/command_tree.py +++ b/code/utils/command_tree.py @@ -3,8 +3,8 @@ from discord import app_commands from discord.ext.commands.errors import * import datetime -from config import BOT_COLOR -from custom_sources import LoadError +from utils.config import BOT_COLOR +from utils.custom_sources import LoadError # Create a custom AppCommandError for the create_player function |