From 2b916ce52c9f2e6e4dba123163325da645eea481 Mon Sep 17 00:00:00 2001 From: mathstrains21 <89940630+mathstrains21@users.noreply.github.com> Date: Wed, 27 Oct 2021 17:14:57 +0100 Subject: Adjust docstrings --- bot/exts/info/patreon.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bot/exts/info/patreon.py b/bot/exts/info/patreon.py index 0083e36a8..c69de4d6d 100644 --- a/bot/exts/info/patreon.py +++ b/bot/exts/info/patreon.py @@ -128,12 +128,12 @@ 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().""" + """A command to activate `self.send_current_supporters()`.""" await self.send_current_supporters(ctx.channel) @tasks.loop(time=datetime.time(hour=17)) async def current_monthly_supporters(self) -> None: - """A loop running every day to see if it's the first of the month, if so call self.send_current_supporters().""" + """A loop running daily to see if it's the first of the month. If so call `self.send_current_supporters()`.""" date = datetime.date.today().day if date == 1: -- cgit v1.2.3