Changed scheduler declaration

This commit is contained in:
kku
2024-12-16 20:59:10 +01:00
parent ef4e42fff0
commit af04a7dce6
5 changed files with 6 additions and 4 deletions

View File

@@ -1,8 +1,10 @@
from discord import Intents
from libbot.pycord.classes import PycordBot
from modules.scheduler import scheduler
intents: Intents = Intents().all()
intents.members = True
client: PycordBot = PycordBot(intents=intents)
client: PycordBot = PycordBot(intents=intents, scheduler=scheduler)