From 184b40944019ed8ab56cea9b0512666f26b8dee8 Mon Sep 17 00:00:00 2001 From: Luke Date: Thu, 7 Nov 2019 23:06:31 +0000 Subject: [PATCH] Remove secret from config --- disco/client.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/disco/client.py b/disco/client.py index 950c860..227446c 100644 --- a/disco/client.py +++ b/disco/client.py @@ -21,8 +21,6 @@ class ClientConfig(Config): token : str Discord authentication token, can be validated using the `disco.util.token.is_valid_token` function. - secret : str - Discord client secret used for the oauth2 flow. shard_id : int The shard ID for the current client instance. shard_count : int @@ -44,7 +42,6 @@ class ClientConfig(Config): """ token = '' - secret = '' shard_id = 0 shard_count = 1 guild_subscriptions = True