From 691a5266793bae9dfdcc40978f5310f32a50657e Mon Sep 17 00:00:00 2001 From: Juni Date: Mon, 5 Dec 2022 14:16:42 -0500 Subject: [PATCH] been in js too long --- chatGpt/chatgpt.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/chatGpt/chatgpt.py b/chatGpt/chatgpt.py index bb02e47..55e697b 100644 --- a/chatGpt/chatgpt.py +++ b/chatGpt/chatgpt.py @@ -21,6 +21,8 @@ class ChatGpt(commands.Cog): "email": openAiKeys.get("email"), "password": openAiKeys.get("password"), } - await ctx.send(f"email {self.config.email}, password {self.config.password}") + email = openAiKeys.get("email") + password = openAiKeys.get("password") + await ctx.send(f"email {email}, password {password}") \ No newline at end of file