diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2023-10-08 02:13:29 -0600 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2023-10-08 02:13:29 -0600 |
commit | 3b6aff6a006b11db589657923d2d841fa3150fdd (patch) | |
tree | efe56668a06745c1fbf45a439f8b2b2a0092b44b /app.py | |
parent | 4d2a0981a58f4c150972b7aca1c62d00f337405e (diff) |
remove default answer
Diffstat (limited to 'app.py')
-rw-r--r-- | app.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -59,7 +59,7 @@ def search(): current_task[-1]["icon"] = "check" tasks = ["Have you tried turning your car on and off?"] try: - tasks += pred.split('\n\n')[0].replace("- ","").splitlines() + tasks = pred.split('\n\n')[0].replace("- ","").splitlines() except: print("Uh oh! Claude didn't return any results!") return render_template("tasks.html", to_do=tasks) |