From 1311574360d736752a385e130ec6c170b396734f Mon Sep 17 00:00:00 2001 From: Interitio Date: Thu, 30 Oct 2025 23:24:48 +1000 Subject: [PATCH] fix: Actually import the exec module --- src/modules/__init__.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/modules/__init__.py b/src/modules/__init__.py index 2acf5d6..d1dca64 100644 --- a/src/modules/__init__.py +++ b/src/modules/__init__.py @@ -4,9 +4,11 @@ if TYPE_CHECKING: from meta import Bot -async def twitch_setup(bot: 'Bot'): - # Import and run setup methods from each module - from . import profiles, tracker, subathon +async def twitch_setup(bot: "Bot"): + # Import and run setup methods from each module + from . import profiles, tracker, subathon, exec + await profiles.twitch_setup(bot) await tracker.twitch_setup(bot) await subathon.twitch_setup(bot) + await exec.twitch_setup(bot)