diff options
| author | 2021-05-20 14:04:14 +0100 | |
|---|---|---|
| committer | 2021-05-20 14:04:14 +0100 | |
| commit | 35027d79e0e0c13297b6fc04e16b23dbf349d804 (patch) | |
| tree | 985421b2e29413184b9ba7a4721dfe4b31480efb /bot/constants.py | |
| parent | Merge pull request #733 from Icebluewolf/http_status_command_randomness (diff) | |
| parent | Remove trailing space (diff) | |
Merge pull request #649 from Shivansh-007/feature/command-suggestions
Porting Command Suggestions from python-discord/bot
Diffstat (limited to 'bot/constants.py')
| -rw-r--r-- | bot/constants.py | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/bot/constants.py b/bot/constants.py index 28ec477d..28103022 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -22,6 +22,7 @@ __all__ = (      "Wolfram",      "Reddit",      "RedisConfig", +    "RedirectOutput",      "MODERATION_ROLES",      "STAFF_ROLES",      "WHITELISTED_CHANNELS", @@ -305,6 +306,10 @@ class Source:      github_avatar_url = "https://avatars1.githubusercontent.com/u/9919" +class RedirectOutput: +    delete_delay: int = 10 + +  class Reddit:      subreddits = ["r/Python"]  |