diff options
| author | 2019-12-12 09:40:16 +0100 | |
|---|---|---|
| committer | 2019-12-12 09:40:16 +0100 | |
| commit | 6da6d543e92f4895cad008c8db91add6714b747a (patch) | |
| tree | 97710eb63e975f6582856da1aed31df20fcd6bec /bot/cogs/reminders.py | |
| parent | AntiSpam: remove bot field from DeletionContext (diff) | |
| parent | Subclass Bot (#681) (diff) | |
Merge branch 'master' into #549-show-attachments-staff
Diffstat (limited to '')
| -rw-r--r-- | bot/cogs/reminders.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bot/cogs/reminders.py b/bot/cogs/reminders.py index 81990704b..45bf9a8f4 100644 --- a/bot/cogs/reminders.py +++ b/bot/cogs/reminders.py @@ -8,8 +8,9 @@ from typing import Optional from dateutil.relativedelta import relativedelta from discord import Colour, Embed, Message -from discord.ext.commands import Bot, Cog, Context, group +from discord.ext.commands import Cog, Context, group +from bot.bot import Bot from bot.constants import Channels, Icons, NEGATIVE_REPLIES, POSITIVE_REPLIES, STAFF_ROLES from bot.converters import Duration from bot.pagination import LinePaginator @@ -290,6 +291,5 @@ class Reminders(Scheduler, Cog): def setup(bot: Bot) -> None: - """Reminders cog load.""" + """Load the Reminders cog.""" bot.add_cog(Reminders(bot)) - log.info("Cog loaded: Reminders") |