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