diff options
author | 2024-01-24 01:32:30 +0000 | |
---|---|---|
committer | 2024-01-24 01:32:30 +0000 | |
commit | 98a869d2f5c2c4ff3e93c493a83ffdd9e2718eb0 (patch) | |
tree | a0c59726470ee0981380ac974a519ba12edcbe9a /bot/constants.py | |
parent | Bump pip-licenses from 4.3.3 to 4.3.4 (#1435) (diff) |
Bump ruff from 0.1.13 to 0.1.14 (#1434)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: shtlrs <[email protected]>
Co-authored-by: Xithrius <[email protected]>
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__) |