From c061f2ff789f072db150c7ee2d847354e3cfa188 Mon Sep 17 00:00:00 2001 From: ramforth Date: Mon, 17 Nov 2025 15:22:33 +0100 Subject: [PATCH] Forgot a comma in the code --- chat_listener.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/chat_listener.py b/chat_listener.py index 0d3f54e..a63ce8a 100644 --- a/chat_listener.py +++ b/chat_listener.py @@ -10,7 +10,9 @@ class TwitchBot(commands.Bot): client_id=client_id, client_secret=client_secret, # The 'bot_id' is the Twitch ID of the user account the bot is running as - bot_id=bot_id, id=bot_id + bot_id=bot_id, id=bot_id, + # Explicitly disable the internal web server to prevent port conflicts + eventsub_url=None ) self.channel_name = channel_name