diff options
author | 2018-02-28 09:29:48 +0000 | |
---|---|---|
committer | 2018-02-28 09:29:48 +0000 | |
commit | 3e5e19983a34416ef31e533a4da8b050a24c241c (patch) | |
tree | 6cc0950b2f62772ac2c995f96e5f580bdbed0f78 | |
parent | [Travis] Only build on master (diff) |
Constants for chevron emoji
-rw-r--r-- | bot/constants.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/bot/constants.py b/bot/constants.py index a56fec1dd..fb4da8a49 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -1,5 +1,4 @@ # coding=utf-8 - import os PYTHON_GUILD = 267624335836053506 @@ -33,3 +32,9 @@ SITE_API_KEY = os.environ.get("BOT_API_KEY") SITE_API_USER_URL = "https://api.pythondiscord.com/user" HELP_PREFIX = "bot." + +# There are Emoji objects, but they're not usable until the bot is connected, +# so we're using string constants instead +GREEN_CHEVRON = "<:greenchevron:418104310329769993>" +RED_CHEVRON = "<:redchevron:418112778184818698>" +WHITE_CHEVRON = "<:whitechevron:418110396973711363>" |