From 2188de11519081743d43a6d47d6947d355648a91 Mon Sep 17 00:00:00 2001 From: TizzySaurus Date: Tue, 14 Mar 2023 16:16:32 +0000 Subject: Fix pydantic model that prevented channel blacklist from working --- bot/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, -- cgit v1.2.3