From 583a19ed6e79824fe00f9d4e507610ee5c703867 Mon Sep 17 00:00:00 2001 From: Slipstream Date: Fri, 30 May 2025 13:12:02 -0600 Subject: [PATCH] fix: Refactor imports in commands.py for clarity and organization --- gurt/commands.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gurt/commands.py b/gurt/commands.py index 2bf12e6..8ed362a 100644 --- a/gurt/commands.py +++ b/gurt/commands.py @@ -12,9 +12,11 @@ from typing import TYPE_CHECKING, Optional, Dict, Any, List, Tuple # Add more ty # We need access to the cog instance for state and methods like get_ai_response # These commands will likely be added to the GurtCog instance dynamically in cog.py's setup +from .config import AVAILABLE_AI_MODELS # Import for choices + if TYPE_CHECKING: from .cog import GurtCog # For type hinting - from .config import MOOD_OPTIONS, IGNORED_CHANNEL_IDS, update_ignored_channels_file, TENOR_API_KEY, AVAILABLE_AI_MODELS # Import for choices and ignored channels + from .config import MOOD_OPTIONS, IGNORED_CHANNEL_IDS, update_ignored_channels_file, TENOR_API_KEY # Import for choices and ignored channels from .emojis import EmojiManager # Import EmojiManager # --- Helper Function for Embeds ---