aboutsummaryrefslogtreecommitdiffstats
path: root/bot/cogs/reminders.py
diff options
context:
space:
mode:
authorGravatar Matteo Bertucci <[email protected]>2019-12-12 09:40:16 +0100
committerGravatar GitHub <[email protected]>2019-12-12 09:40:16 +0100
commit6da6d543e92f4895cad008c8db91add6714b747a (patch)
tree97710eb63e975f6582856da1aed31df20fcd6bec /bot/cogs/reminders.py
parentAntiSpam: remove bot field from DeletionContext (diff)
parentSubclass Bot (#681) (diff)
Merge branch 'master' into #549-show-attachments-staff
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")