diff options
| author | 2021-10-27 17:17:19 +0100 | |
|---|---|---|
| committer | 2021-10-27 17:17:19 +0100 | |
| commit | 0b83f58b0160e53191b8c54d6832b1370d22f862 (patch) | |
| tree | 6d471d8816bca7d71d1b6b193752547c9431160c | |
| parent | Adjust docstrings (diff) | |
`commands.context` -> `commands.Context`
Diffstat (limited to '')
| -rw-r--r-- | bot/exts/info/patreon.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/info/patreon.py b/bot/exts/info/patreon.py index c69de4d6d..85def5c38 100644 --- a/bot/exts/info/patreon.py +++ b/bot/exts/info/patreon.py @@ -127,7 +127,7 @@ class Patreon(commands.Cog): await channel.send(embeds=embed_list) @commands.command("patrons") - async def current_supporters_command(self, ctx: commands.context) -> None: + async def current_supporters_command(self, ctx: commands.Context) -> None: """A command to activate `self.send_current_supporters()`.""" await self.send_current_supporters(ctx.channel) @@ -142,7 +142,7 @@ class Patreon(commands.Cog): ) @commands.command("patreon") - async def patreon_info(self, ctx: commands.context) -> None: + async def patreon_info(self, ctx: commands.Context) -> None: """A command to send patreon info.""" await ctx.channel.send(embeds=[discord.Embed( title="Patreon", |