diff options
author | 2020-09-19 20:48:12 -0400 | |
---|---|---|
committer | 2020-09-19 20:48:12 -0400 | |
commit | fc5837770a0a1b49986768455a36d82193fbaadd (patch) | |
tree | 24a75ca3be0a6750a63bbff0f2820d758c224649 | |
parent | Authenticate with the GitHub API to allow for more requests (diff) |
Fix order of imports
-rw-r--r-- | bot/exts/evergreen/issues.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/evergreen/issues.py b/bot/exts/evergreen/issues.py index 15c97473..5a5c82e7 100644 --- a/bot/exts/evergreen/issues.py +++ b/bot/exts/evergreen/issues.py @@ -4,7 +4,7 @@ import random import discord from discord.ext import commands -from bot.constants import Channels, Colours, Emojis, ERROR_REPLIES, Tokens, WHITELISTED_CHANNELS +from bot.constants import Channels, Colours, ERROR_REPLIES, Emojis, Tokens, WHITELISTED_CHANNELS from bot.utils.decorators import override_in_channel log = logging.getLogger(__name__) |