diff --git a/fernuni_bot.py b/fernuni_bot.py index 602bec7b621e924fa18e9b0c4af790c09b4c370f..22dbe8857bb0d94b3e46c5242326064ea916aad0 100644 --- a/fernuni_bot.py +++ b/fernuni_bot.py @@ -5,7 +5,8 @@ from disnake.ext import commands from dotenv import load_dotenv from cogs import appointments, calmdown, christmas, easter, github, help, learninggroups, links, \ - news, polls, roles, support, text_commands, voice, welcome, xkcd, timer + news, polls, roles, support, text_commands, voice, welcome, xkcd +# , timer # .env file is necessary in the same directory, that contains several strings. load_dotenv() @@ -43,7 +44,7 @@ class Boty(commands.Bot): self.add_cog(help.Help(self)) self.add_cog(calmdown.Calmdown(self)) self.add_cog(github.Github(self)) - self.add_cog(timer.Timer(self)) + # self.add_cog(timer.Timer(self)) bot = Boty()