From 2447c51a4dc74d48872caa58fe8f5cc350cf3754 Mon Sep 17 00:00:00 2001 From: Shom770 <82843611+Shom770@users.noreply.github.com> Date: Wed, 13 Oct 2021 20:22:54 -0400 Subject: initial commit --- bot/exts/utilities/trivianight.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 bot/exts/utilities/trivianight.py (limited to 'bot/exts/utilities/trivianight.py') diff --git a/bot/exts/utilities/trivianight.py b/bot/exts/utilities/trivianight.py new file mode 100644 index 00000000..29a9e3d1 --- /dev/null +++ b/bot/exts/utilities/trivianight.py @@ -0,0 +1,15 @@ +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)) -- cgit v1.2.3