diff options
author | 2023-08-13 19:36:57 +0800 | |
---|---|---|
committer | 2023-08-26 23:44:16 +0800 | |
commit | 30ff6480ecbbdbefbfc23262dc9615579fd942f5 (patch) | |
tree | a6d3224c73907dbb64baa2c7f0feae3bb6ba7ed1 | |
parent | Ask for confirmation when an admin modifies another user's reminders (diff) |
Update docstring to better match function behavior
-rw-r--r-- | bot/exts/utils/reminders.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/utils/reminders.py b/bot/exts/utils/reminders.py index 6853fff05..b1160fb80 100644 --- a/bot/exts/utils/reminders.py +++ b/bot/exts/utils/reminders.py @@ -560,7 +560,7 @@ class Reminders(Cog): """ Check whether the reminder can be modified by the ctx author. - The check passes when the user is an admin, or if they created the reminder. + The check passes if the user created the reminder, or if they are an admin (with confirmation). """ try: api_response = await self.bot.api_client.get(f"bot/reminders/{reminder_id}") |