Skip to content
Snippets Groups Projects
Unverified Commit f8d29483 authored by dnns01's avatar dnns01 Committed by GitHub
Browse files

Remove Timer from Bot (temporarily) (#117)

parent cd499d7e
No related branches found
No related tags found
1 merge request!128Merge learninggroup changes to release
...@@ -5,7 +5,8 @@ from disnake.ext import commands ...@@ -5,7 +5,8 @@ from disnake.ext import commands
from dotenv import load_dotenv from dotenv import load_dotenv
from cogs import appointments, calmdown, christmas, easter, github, help, learninggroups, links, \ 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. # .env file is necessary in the same directory, that contains several strings.
load_dotenv() load_dotenv()
...@@ -43,7 +44,7 @@ class Boty(commands.Bot): ...@@ -43,7 +44,7 @@ class Boty(commands.Bot):
self.add_cog(help.Help(self)) self.add_cog(help.Help(self))
self.add_cog(calmdown.Calmdown(self)) self.add_cog(calmdown.Calmdown(self))
self.add_cog(github.Github(self)) self.add_cog(github.Github(self))
self.add_cog(timer.Timer(self)) # self.add_cog(timer.Timer(self))
bot = Boty() bot = Boty()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment