diff options
| author | 2019-02-07 15:49:11 -0500 | |
|---|---|---|
| committer | 2019-02-07 15:49:11 -0500 | |
| commit | a4f877412992142943da30503d45ce7546e3fd08 (patch) | |
| tree | 4ae285632c21465d5f5c4a3e7ef8a01de1a61302 | |
| parent | Code is properly linted. (diff) | |
Fixed issues pertaining to Import Order.
| -rw-r--r-- | bot/cogs/rules.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/bot/cogs/rules.py b/bot/cogs/rules.py index f44858b04..fe920199a 100644 --- a/bot/cogs/rules.py +++ b/bot/cogs/rules.py @@ -1,13 +1,12 @@ import re from typing import Optional -from bot.constants import Channels, Roles -from bot.decorators import redirect_output -from bot.pagination import LinePaginator - from discord import Colour, Embed from discord.ext.commands import Bot, Context, command +from bot.constants import Channels, Roles +from bot.decorators import redirect_output +from bot.pagination import LinePaginator STAFF = [ Roles.admin, |