aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Akarys42 <[email protected]>2019-12-14 11:42:10 +0100
committerGravatar Akarys42 <[email protected]>2019-12-14 11:42:10 +0100
commita81ad8f1f7d548f20d1f2428a808e14dbbfe22bc (patch)
treedd1cf42984498da831616790612842e4e983e24f
parentActually schedule message for deletion (diff)
Fix docstring typo
-rw-r--r--bot/cogs/filtering.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/cogs/filtering.py b/bot/cogs/filtering.py
index 0879bfee6..2c3f41c05 100644
--- a/bot/cogs/filtering.py
+++ b/bot/cogs/filtering.py
@@ -405,7 +405,7 @@ class Filtering(Cog, Scheduler):
await channel.send(f"{filtered_member.mention} {reason}")
async def _scheduled_task(self, msg: dict) -> None:
- """A coroutine which delete the offensive message once the delete date is reached."""
+ """A coroutine that delete the offensive message once the delete date is reached."""
delete_at = dateutil.parser.isoparse(msg['delete_date'])
await wait_until(delete_at)