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/source.py | |
parent | chore(evergreen): make usage of . at sentence ends consistent (diff) |
chore(evergreen): remove unneeded cog constructors
Diffstat (limited to 'bot/exts/evergreen/source.py')
-rw-r--r-- | bot/exts/evergreen/source.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/bot/exts/evergreen/source.py b/bot/exts/evergreen/source.py index 3e6031a5..14fd02f3 100644 --- a/bot/exts/evergreen/source.py +++ b/bot/exts/evergreen/source.py @@ -32,9 +32,6 @@ class SourceConverter(commands.Converter): class BotSource(commands.Cog): """Displays information about the bot's source code.""" - def __init__(self, bot: Bot): - self.bot = bot - @commands.command(name="source", aliases=("src",)) async def source_command(self, ctx: commands.Context, *, source_item: SourceConverter = None) -> None: """Display information and a GitHub link to the source code of a command, tag, or cog.""" |