diff options
| author | 2021-10-28 14:36:03 +0100 | |
|---|---|---|
| committer | 2021-10-28 14:36:03 +0100 | |
| commit | af50cc42f68d8a747e1d4ac88b272c4f54200c20 (patch) | |
| tree | 5eee5c62f5e9bb0953700ae9badf0a9d75f0ee99 | |
| parent | Update patreon description (diff) | |
Change command function docstrings
(Help command uses docstrings, so make them user-friendly)
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 a34238300..89a166d40 100644 --- a/bot/exts/info/patreon.py +++ b/bot/exts/info/patreon.py @@ -128,7 +128,7 @@ class Patreon(commands.Cog): @commands.command("patrons") async def current_supporters_command(self, ctx: commands.Context) -> None: - """A command to activate `self.send_current_supporters()`.""" + """Sends the current list of patreon supporters, sorted by tier level.""" await self.send_current_supporters(ctx.channel) @tasks.loop(time=datetime.time(hour=17)) @@ -143,7 +143,7 @@ class Patreon(commands.Cog): @commands.command("patreon") async def patreon_info(self, ctx: commands.Context) -> None: - """A command to send patreon info.""" + """Sends patreon info.""" await ctx.send(embed=discord.Embed( title="Patreon", description=( |