forked from HoloTech/subathon-tracker-bot
fix: Actually import the exec module
This commit is contained in:
@@ -4,9 +4,11 @@ if TYPE_CHECKING:
|
|||||||
from meta import Bot
|
from meta import Bot
|
||||||
|
|
||||||
|
|
||||||
async def twitch_setup(bot: 'Bot'):
|
async def twitch_setup(bot: "Bot"):
|
||||||
# Import and run setup methods from each module
|
# Import and run setup methods from each module
|
||||||
from . import profiles, tracker, subathon
|
from . import profiles, tracker, subathon, exec
|
||||||
|
|
||||||
await profiles.twitch_setup(bot)
|
await profiles.twitch_setup(bot)
|
||||||
await tracker.twitch_setup(bot)
|
await tracker.twitch_setup(bot)
|
||||||
await subathon.twitch_setup(bot)
|
await subathon.twitch_setup(bot)
|
||||||
|
await exec.twitch_setup(bot)
|
||||||
|
|||||||
Reference in New Issue
Block a user