diff --git a/command_customization.py b/command_customization.py index 5e03f30..9e9eb17 100644 --- a/command_customization.py +++ b/command_customization.py @@ -7,7 +7,7 @@ from discord import app_commands import logging from typing import Dict, List, Optional, Tuple, Any, Callable, Awaitable import asyncio -from discordbot import settings_manager +import settings_manager log = logging.getLogger(__name__) diff --git a/main.py b/main.py index 9e24388..c5be06e 100644 --- a/main.py +++ b/main.py @@ -18,7 +18,7 @@ import command_customization # Import command customization utilities # Import the unified API service runner and the sync API module import sys sys.path.append(os.path.join(os.path.dirname(__file__), '..')) -from discordbot.run_unified_api import start_api_in_thread +from run_unified_api import start_api_in_thread import discord_bot_sync_api # Import the module to set the cog instance # Check if API dependencies are available