diff options
| author | 2020-01-12 16:23:11 +0100 | |
|---|---|---|
| committer | 2020-01-12 16:23:11 +0100 | |
| commit | 1016ac97c8ae8629387d064cdce88449b8e8d342 (patch) | |
| tree | 27d9b8f3950a0470a10a2cb6589d40234fff8076 /bot/cogs/alias.py | |
| parent | feat(!rules): allow for throw away words after the command call (diff) | |
fix(lint): wrong import order
Diffstat (limited to '')
| -rw-r--r-- | bot/cogs/alias.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/cogs/alias.py b/bot/cogs/alias.py index 2b499a537..d05a6a715 100644 --- a/bot/cogs/alias.py +++ b/bot/cogs/alias.py @@ -4,8 +4,8 @@ from typing import Union from discord import Colour, Embed, Member, User from discord.ext.commands import ( - Cog, Command, Context, clean_content, - command, Greedy, group, + Cog, Command, Context, Greedy, + clean_content, command, group, ) from bot.bot import Bot |