diff options
author | 2021-04-19 21:17:10 +0100 | |
---|---|---|
committer | 2021-04-19 21:17:10 +0100 | |
commit | f919e0cdb9cff71c187f55ea4447ef4934c5b9ab (patch) | |
tree | 17effd89262b2a4e7aed8c1cfea25fc61c05fed2 /bot/exts/evergreen/pythonfacts.py | |
parent | chore(evergreen): make usage of . at sentence ends consistent (diff) |
chore(evergreen): remove unneeded cog constructors
Diffstat (limited to 'bot/exts/evergreen/pythonfacts.py')
-rw-r--r-- | bot/exts/evergreen/pythonfacts.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/bot/exts/evergreen/pythonfacts.py b/bot/exts/evergreen/pythonfacts.py index 1dd9b40d..73234d55 100644 --- a/bot/exts/evergreen/pythonfacts.py +++ b/bot/exts/evergreen/pythonfacts.py @@ -15,9 +15,6 @@ COLORS = itertools.cycle([Colours.python_blue, Colours.python_yellow]) class PythonFacts(commands.Cog): """Sends a random fun fact about Python.""" - def __init__(self, bot: Bot) -> None: - self.bot = bot - @commands.command(name='pythonfact', aliases=['pyfact']) async def get_python_fact(self, ctx: commands.Context) -> None: """Sends a Random fun fact about Python.""" |