diff options
| author | 2021-10-27 17:14:57 +0100 | |
|---|---|---|
| committer | 2021-10-27 17:14:57 +0100 | |
| commit | 2b916ce52c9f2e6e4dba123163325da645eea481 (patch) | |
| tree | 37cb518971fb73f526d8bb2fa407d1cc6af72ff2 | |
| parent | Rename some variables (diff) | |
Adjust docstrings
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 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: |