diff options
| author | 2020-10-15 20:17:49 +0200 | |
|---|---|---|
| committer | 2020-10-15 20:20:27 +0200 | |
| commit | 725d3982128ae7da549b2a9aa1bfa5194393ba42 (patch) | |
| tree | 1005e2831c44865ed47473bc431bedc43f0ce289 | |
| parent | Corrected Trailing Whitespace (diff) | |
Constants: rename conflicting channel
There were two attributes named 'announcements' on the Channels class.
| -rw-r--r-- | bot/constants.py | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/bot/constants.py b/bot/constants.py index c5eed1f8..2056d542 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -78,7 +78,7 @@ class Channels(NamedTuple):      voice_chat = 412357430186344448      # Core Dev Sprint channels -    announcements = 755958119963557958 +    sprint_announcements = 755958119963557958      information = 753338352136224798      organisers = 753340132639375420      general = 753340631538991305 @@ -230,7 +230,7 @@ WHITELISTED_CHANNELS = (      Channels.voice_chat,      # Core Dev Sprint Channels -    Channels.announcements, +    Channels.sprint_announcements,      Channels.information,      Channels.organisers,      Channels.general, | 
