diff options
author | 2024-01-30 07:52:20 -0600 | |
---|---|---|
committer | 2024-01-30 07:52:20 -0600 | |
commit | ad639d72925c1fab21b4b9adf926318b470f7ce2 (patch) | |
tree | 2c5626a4f2ae0aae955bc3e2b16aa15062a8dcfe /bot/constants.py | |
parent | Add the or back in, but keep the space (diff) | |
parent | Bump aiohttp from 3.9.0 to 3.9.2 (#1438) (diff) |
Merge branch 'main' into shenanigansd-patch-1
Diffstat (limited to 'bot/constants.py')
-rw-r--r-- | bot/constants.py | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/bot/constants.py b/bot/constants.py index 0d74fb4a..492ac918 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -7,26 +7,26 @@ from pydantic_settings import BaseSettings from pydis_core.utils.logging import get_logger __all__ = ( - "Channels", + "ERROR_REPLIES", + "MODERATION_ROLES", + "NEGATIVE_REPLIES", + "POSITIVE_REPLIES", + "PYTHON_PREFIX", + "STAFF_ROLES", + "WHITELISTED_CHANNELS", "Categories", + "Channels", "Client", - "Logging", "Colours", "Emojis", "Icons", + "Logging", "Month", + "Reddit", + "Redis", "Roles", "Tokens", "Wolfram", - "Reddit", - "Redis", - "PYTHON_PREFIX", - "MODERATION_ROLES", - "STAFF_ROLES", - "WHITELISTED_CHANNELS", - "ERROR_REPLIES", - "NEGATIVE_REPLIES", - "POSITIVE_REPLIES", ) log = get_logger(__name__) |