diff options
author | 2021-12-03 17:28:15 -0500 | |
---|---|---|
committer | 2021-12-03 17:28:15 -0500 | |
commit | 7cb5c5517043c0006b001c15373b664b86cc6b43 (patch) | |
tree | 3bb11a45c70882f532f9270b1ad362e6c2672e33 /bot/constants.py | |
parent | Merge pull request #963 from python-discord/aoc-lb-multiword (diff) |
feat: implement moving commands
add exceptions and handler for commands that move locations
Diffstat (limited to 'bot/constants.py')
-rw-r--r-- | bot/constants.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bot/constants.py b/bot/constants.py index f4b1cab0..854fbe55 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -23,6 +23,7 @@ __all__ = ( "Reddit", "RedisConfig", "RedirectOutput", + "PYTHON_PREFIX" "MODERATION_ROLES", "STAFF_ROLES", "WHITELISTED_CHANNELS", @@ -34,6 +35,8 @@ __all__ = ( log = logging.getLogger(__name__) +PYTHON_PREFIX = "!" + @dataclasses.dataclass class AdventOfCodeLeaderboard: id: str |