aboutsummaryrefslogtreecommitdiffstats
path: root/bot/cogs/alias.py
diff options
context:
space:
mode:
authorGravatar MarkKoz <[email protected]>2019-12-07 20:11:50 -0800
committerGravatar MarkKoz <[email protected]>2019-12-07 20:11:50 -0800
commit6fe61e5919cb541a1651312a01ddf7e7f10d0f86 (patch)
tree5d92e20370ce9c0c35517cec4c78080d129f3d1c /bot/cogs/alias.py
parentSubclass Bot (diff)
Change all Bot imports to use the subclass
Diffstat (limited to '')
-rw-r--r--bot/cogs/alias.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/bot/cogs/alias.py b/bot/cogs/alias.py
index 5190c559b..4ee5a2aed 100644
--- a/bot/cogs/alias.py
+++ b/bot/cogs/alias.py
@@ -3,8 +3,9 @@ import logging
from typing import Union
from discord import Colour, Embed, Member, User
-from discord.ext.commands import Bot, Cog, Command, Context, clean_content, command, group
+from discord.ext.commands import Cog, Command, Context, clean_content, command, group
+from bot.bot import Bot
from bot.cogs.extensions import Extension
from bot.cogs.watchchannels.watchchannel import proxy_user
from bot.converters import TagNameConverter