diff options
Diffstat (limited to 'bot/exts/info/source.py')
-rw-r--r-- | bot/exts/info/source.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/bot/exts/info/source.py b/bot/exts/info/source.py index 4514a3d77..a0b2d5535 100644 --- a/bot/exts/info/source.py +++ b/bot/exts/info/source.py @@ -19,7 +19,12 @@ class BotSource(commands.Cog): self.bot = bot @commands.command(name="source", aliases=("src",)) - async def source_command(self, ctx: commands.Context, *, source_item: SourceConverter = None) -> None: + async def source_command( + self, + ctx: commands.Context, + *, + source_item: SourceConverter = None, # noqa: RUF013 + ) -> None: """Display information and a GitHub link to the source code of a command, tag, or cog.""" if not source_item: embed = Embed(title="Bot's GitHub Repository") |