From 3644a5b8fc6dbb6d207fb94bb5d1f59ca28b9c01 Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Wed, 6 Mar 2019 17:28:46 -0800 Subject: [PATCH] Remove client_secret, it's not needed --- bot.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/bot.py b/bot.py index 70da445..98c64b2 100644 --- a/bot.py +++ b/bot.py @@ -26,7 +26,6 @@ class Config(NamedTuple): channel: str oauth_token: str client_id: str - client_secret: str def __repr__(self) -> str: return ( @@ -35,7 +34,6 @@ class Config(NamedTuple): f'channel={self.channel!r}, ' f'oauth_token={"***"!r}, ' f'client_id={"***"!r}, ' - f'client_secret={"***"!r}, ' f')' )