From d5ee7b2648ae2fce897e5339bb7e4b337f82684b Mon Sep 17 00:00:00 2001 From: Luke Robles Date: Wed, 29 Mar 2023 13:50:33 -0700 Subject: [PATCH] Add 'you asked' to wolfram --- app/cogs/actual_utils.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/cogs/actual_utils.py b/app/cogs/actual_utils.py index e41e0384..f5bdb2e1 100755 --- a/app/cogs/actual_utils.py +++ b/app/cogs/actual_utils.py @@ -101,7 +101,9 @@ class ActualUtils(commands.Cog): await ctx.defer() try: res = client.query(query) - return await ctx.send_followup(next(res.results).text) + return await ctx.send_followup( + "You asked: %s\n\n%s" % (query, next(res.results).text) + ) except Exception: return await ctx.send_followup("Sorry, I'm unable to answer that")