aboutsummaryrefslogtreecommitdiffstats
path: root/bot/constants.py
diff options
context:
space:
mode:
authorGravatar Bradley Reynolds <[email protected]>2024-01-30 07:52:20 -0600
committerGravatar GitHub <[email protected]>2024-01-30 07:52:20 -0600
commitad639d72925c1fab21b4b9adf926318b470f7ce2 (patch)
tree2c5626a4f2ae0aae955bc3e2b16aa15062a8dcfe /bot/constants.py
parentAdd the or back in, but keep the space (diff)
parentBump 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.py22
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__)