From f8d2948362a573a8a673edaa73cfb5bb3bb52ff9 Mon Sep 17 00:00:00 2001
From: dnns01 <github@dnns01.de>
Date: Tue, 12 Oct 2021 18:44:03 +0200
Subject: [PATCH] Remove Timer from Bot (temporarily) (#117)

---
 fernuni_bot.py | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/fernuni_bot.py b/fernuni_bot.py
index 602bec7..22dbe88 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()
-- 
GitLab