From e7801287c2ef7f12b34303f92604bcc0c8ad330b Mon Sep 17 00:00:00 2001 From: ramforth Date: Mon, 17 Nov 2025 17:45:02 +0100 Subject: [PATCH] from twitchio import Message as TwitchIOMessage --- chat_listener.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chat_listener.py b/chat_listener.py index 2245da6..f381992 100644 --- a/chat_listener.py +++ b/chat_listener.py @@ -1,6 +1,6 @@ from twitchio.ext import commands from twitchio.web import AiohttpAdapter -from twitchio.client import Message as TwitchIOMessage +from twitchio import Message as TwitchIOMessage class TwitchBot(commands.Bot): def __init__(self, access_token: str, client_id: str, client_secret: str, bot_id: str, channel_name: str, websocket_manager, db_user_id: int):