diff options
author | 2023-03-14 17:36:20 +0100 | |
---|---|---|
committer | 2023-03-14 17:36:20 +0100 | |
commit | 45cf78720b4a964db1b3118f25b51f4805d617e8 (patch) | |
tree | c3710e85e477d72662b3616c0685211337fb4695 | |
parent | Merge pull request #2463 from shtlrs/preserve-personal-config (diff) | |
parent | Fix pydantic model that prevented channel blacklist from working (diff) |
Merge pull request #2470 from python-discord/fix-channel-blacklist
Fix typehint that broke duckpond channel blacklist
-rw-r--r-- | bot/constants.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/constants.py b/bot/constants.py index 006d0e4ce..31a8b4d31 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -404,7 +404,7 @@ class _DuckPond(EnvConfig): threshold = 7 - channel_blacklist: list[str] = [ + channel_blacklist: list[int] = [ Channels.announcements, Channels.python_news, Channels.python_events, |