diff options
| author | 2019-12-05 17:54:01 +0530 | |
|---|---|---|
| committer | 2019-12-05 17:54:01 +0530 | |
| commit | 76951aff4eeee516f0a401bb9c1f2e1434fbf38f (patch) | |
| tree | 0dccb42afc4ca40d2fba2f02ea8905b2f1fd23f3 | |
| parent | Added embeds to error messages, new way of joining hints. (diff) | |
Fixed wrong order of import syntax
| -rw-r--r-- | bot/seasons/evergreen/bookmark.py | 4 |
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."
|