Remove client_secret, it's not needed

This commit is contained in:
Anthony Sottile 2019-03-06 17:28:46 -08:00
parent 05ce0e9af8
commit 3644a5b8fc
1 changed files with 0 additions and 2 deletions

2
bot.py
View File

@ -26,7 +26,6 @@ class Config(NamedTuple):
channel: str channel: str
oauth_token: str oauth_token: str
client_id: str client_id: str
client_secret: str
def __repr__(self) -> str: def __repr__(self) -> str:
return ( return (
@ -35,7 +34,6 @@ class Config(NamedTuple):
f'channel={self.channel!r}, ' f'channel={self.channel!r}, '
f'oauth_token={"***"!r}, ' f'oauth_token={"***"!r}, '
f'client_id={"***"!r}, ' f'client_id={"***"!r}, '
f'client_secret={"***"!r}, '
f')' f')'
) )