from types import SimpleNamespace from typing import Any, cast from discord import AutoShardedBot, Intents from discord.ext import commands, tasks from Christmas.discord import Christmas if __name__ == "__main__": bot = Christmas( command_prefix=commands.when_mentioned_or("c!"), case_insensitive=True, allowed_mentions=commands.AllowedMentions( everyone=False, users=True, roles=False, replied_user=True ), intents=Intents.all(), ) bot.run()