From 2ef0cc06c2199f2af4ba2eb468c450669af8292c Mon Sep 17 00:00:00 2001 From: Bulat Kurbanov Date: Tue, 18 Feb 2025 20:25:39 +0100 Subject: [PATCH] Fix --- src/modules/stream_notifications/twitch/authorize.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/modules/stream_notifications/twitch/authorize.py b/src/modules/stream_notifications/twitch/authorize.py index d0906b8..08f7c6c 100644 --- a/src/modules/stream_notifications/twitch/authorize.py +++ b/src/modules/stream_notifications/twitch/authorize.py @@ -7,8 +7,7 @@ from .token_storage import TokenStorage SCOPES = [ - AuthScope.CHAT_READ, - AuthScope.CHAT_EDIT, + scope for scope in AuthScope ]