aboutsummaryrefslogtreecommitdiffstats
path: root/bot/cogs/reminders.py
diff options
context:
space:
mode:
authorGravatar MarkKoz <[email protected]>2019-12-12 00:47:53 -0800
committerGravatar MarkKoz <[email protected]>2019-12-12 00:47:53 -0800
commit2728473e5d0881042d7664f0120a0549248bcce0 (patch)
tree77b8d69aa3df5f061b32f68b9f1117bbfe50b1db /bot/cogs/reminders.py
parentapply kosa's requested changes. (diff)
parentSubclass Bot (#681) (diff)
Merge remote-tracking branch 'origin/master' into zen-command
Diffstat (limited to '')
-rw-r--r--bot/cogs/reminders.py6
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")