aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/utilities
diff options
context:
space:
mode:
authorGravatar Shom770 <[email protected]>2021-10-13 22:02:37 -0400
committerGravatar Shom770 <[email protected]>2022-02-09 18:13:36 -0500
commita4b2facdd51ed7cff7e045e62d12c93797df0e11 (patch)
treed6d8d69e5027ffaa7b74b0fa106c4337f8626ced /bot/exts/utilities
parentinitial commit (diff)
organizing score board (scoreboard.py)
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))