aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/utilities
diff options
context:
space:
mode:
Diffstat (limited to 'bot/exts/utilities')
-rw-r--r--bot/exts/utilities/trivianight.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/bot/exts/utilities/trivianight.py b/bot/exts/utilities/trivianight.py
deleted file mode 100644
index 29a9e3d1..00000000
--- a/bot/exts/utilities/trivianight.py
+++ /dev/null
@@ -1,15 +0,0 @@
-from discord.ext import commands
-
-from bot.bot import Bot
-
-
-class TriviaNight(commands.Cog):
- """Cog for the Python Trivia Night event."""
-
- def __init__(self, bot: Bot):
- self.bot = bot
-
-
-def setup(bot: Bot) -> None:
- """Load the TriviaNight cog."""
- bot.add_cog(TriviaNight(bot))