aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar TizzySaurus <[email protected]>2023-03-14 16:16:32 +0000
committerGravatar TizzySaurus <[email protected]>2023-03-14 16:16:32 +0000
commit2188de11519081743d43a6d47d6947d355648a91 (patch)
treec3710e85e477d72662b3616c0685211337fb4695
parentMerge pull request #2463 from shtlrs/preserve-personal-config (diff)
Fix pydantic model that prevented channel blacklist from working
-rw-r--r--bot/constants.py2
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,