diff options
author | 2021-01-24 17:20:46 +0200 | |
---|---|---|
committer | 2021-01-24 17:20:46 +0200 | |
commit | 3356cf9cfa3d3a3f401c651217ecf2522e4fbde6 (patch) | |
tree | fe5125c602fa9e2fbaf725be690574906b7e7a4e /bot/constants.py | |
parent | Decrease timeout from 120 sec to 30 sec (diff) | |
parent | Merge pull request #415 from htudu/issue-337 (diff) |
Merge branch 'master' into tic-tac-toe
Diffstat (limited to 'bot/constants.py')
-rw-r--r-- | bot/constants.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bot/constants.py b/bot/constants.py index 2a306d94..1d41a53e 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -258,7 +258,8 @@ class Tokens(NamedTuple): youtube = environ.get("YOUTUBE_API_KEY") tmdb = environ.get("TMDB_API_KEY") nasa = environ.get("NASA_API_KEY") - igdb = environ.get("IGDB_API_KEY") + igdb_client_id = environ.get("IGDB_CLIENT_ID") + igdb_client_secret = environ.get("IGDB_CLIENT_SECRET") github = environ.get("GITHUB_TOKEN") |