From 1cb19f8d9b484c10e62f7fe34dcbca3116e6b18e Mon Sep 17 00:00:00 2001 From: Funky Waddle Date: Sun, 29 Jun 2025 02:22:19 -0500 Subject: [PATCH] Update Twitch lib. Remove debug output --- libs/Twitch.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/libs/Twitch.py b/libs/Twitch.py index 909dc35..77a6e64 100644 --- a/libs/Twitch.py +++ b/libs/Twitch.py @@ -17,7 +17,6 @@ class Twitch: now = datetime.datetime.now() future = now + timedelta(weeks=3) unx_time = future.timestamp() - print("unix time:", unx_time) return int(unx_time) async def get_access_token(self): @@ -28,7 +27,6 @@ class Twitch: } response = requests.post("https://id.twitch.tv/oauth2/token", params=params) - print("response:", response.json()) self.access_token = response.json()["access_token"] self.access_token_expires = await self.get_unix_time() return self.access_token, self.access_token_expires