diff options
author | 2019-12-10 23:27:35 +0100 | |
---|---|---|
committer | 2019-12-10 23:27:35 +0100 | |
commit | 98c2b6789ccbadd786ecb316d2dde412629459f4 (patch) | |
tree | 338a97006c837323097f5a262145c3d57127a151 | |
parent | Refactor function signature (diff) |
Add bookmark icon url to constants
-rw-r--r-- | bot/constants.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/bot/constants.py b/bot/constants.py index c09d8369..71f56a09 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -4,6 +4,7 @@ from typing import NamedTuple from datetime import datetime __all__ = ( + "bookmark_icon_url", "AdventOfCode", "Channels", "Client", "Colours", "Emojis", "Hacktoberfest", "Roles", "Tokens", "WHITELISTED_CHANNELS", "STAFF_ROLES", "MODERATION_ROLES", "POSITIVE_REPLIES", "NEGATIVE_REPLIES", "ERROR_REPLIES", @@ -11,6 +12,11 @@ __all__ = ( log = logging.getLogger(__name__) +bookmark_icon_url = ( + "https://images-ext-2.discordapp.net/external/zl4oDwcmxUILY7sD9ZWE2fU5R7n6QcxEmPYSE5eddbg/" + "%3Fv%3D1/https/cdn.discordapp.com/emojis/654080405988966419.png?width=20&height=20" +) + class AdventOfCode: leaderboard_cache_age_threshold_seconds = 3600 |