diff options
| author | 2019-12-07 20:11:50 -0800 | |
|---|---|---|
| committer | 2019-12-07 20:11:50 -0800 | |
| commit | 6fe61e5919cb541a1651312a01ddf7e7f10d0f86 (patch) | |
| tree | 5d92e20370ce9c0c35517cec4c78080d129f3d1c /bot/cogs/reminders.py | |
| parent | Subclass Bot (diff) | |
Change all Bot imports to use the subclass
Diffstat (limited to '')
| -rw-r--r-- | bot/cogs/reminders.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bot/cogs/reminders.py b/bot/cogs/reminders.py index 81990704b..b805b24c5 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 |