aboutsummaryrefslogtreecommitdiffstats
path: root/bot
diff options
context:
space:
mode:
authorGravatar AG_1436 <[email protected]>2019-12-05 17:54:01 +0530
committerGravatar GitHub <[email protected]>2019-12-05 17:54:01 +0530
commit76951aff4eeee516f0a401bb9c1f2e1434fbf38f (patch)
tree0dccb42afc4ca40d2fba2f02ea8905b2f1fd23f3 /bot
parentAdded embeds to error messages, new way of joining hints. (diff)
Fixed wrong order of import syntax
Diffstat (limited to 'bot')
-rw-r--r--bot/seasons/evergreen/bookmark.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/seasons/evergreen/bookmark.py b/bot/seasons/evergreen/bookmark.py
index c778a8d1..5bcb8030 100644
--- a/bot/seasons/evergreen/bookmark.py
+++ b/bot/seasons/evergreen/bookmark.py
@@ -4,7 +4,7 @@ import random
import discord
from discord.ext import commands
-from bot.constants import ERROR_REPLIES, Colours
+from bot.constants import Colours, ERROR_REPLIES
log = logging.getLogger(__name__)
@@ -40,7 +40,7 @@ class Bookmark(commands.Cog):
colour=Colours.soft_green
)
hint = ' '.join(args)
-
+
if hint == "":
hint = "No hint provided."