diff options
author | 2023-05-05 22:08:09 +0100 | |
---|---|---|
committer | 2023-05-06 13:20:47 +0100 | |
commit | 12be2fdf771a1a25c2c135516746002154135dbf (patch) | |
tree | 108cbc37c7a2f89ae7cffeca4165ebc444b75317 /bot/exts/fun/space.py | |
parent | update env variables in "Attempt bot setup" stage (diff) |
use `SecretStr` for all secrets
Diffstat (limited to 'bot/exts/fun/space.py')
-rw-r--r-- | bot/exts/fun/space.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/fun/space.py b/bot/exts/fun/space.py index 22a89050..c688b281 100644 --- a/bot/exts/fun/space.py +++ b/bot/exts/fun/space.py @@ -210,7 +210,7 @@ class Space(Cog): """Fetch information from NASA API, return result.""" params = {} if use_api_key: - params["api_key"] = Tokens.nasa + params["api_key"] = Tokens.nasa.get_secret_value() # Add additional parameters to request parameters only when they provided by user if additional_params is not None: |