diff options
| author | 2019-12-12 18:21:39 +1000 | |
|---|---|---|
| committer | 2019-12-12 18:21:39 +1000 | |
| commit | 10a39501a0835d860188c4605e9dd0f41a28549b (patch) | |
| tree | f19e98c7977e8f57780225698bfd3ea3438df262 /bot/cogs/reminders.py | |
| parent | Merge pull request #684 from python-discord/enhancement/644-mute-kicks-voice (diff) | |
| parent | Use the AsyncResolver for APIClient and discord.py sessions too (diff) | |
Subclass Bot (#681)
Subclass Bot
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") |