This commit is contained in:
Haozhe Wu 2026-05-28 17:32:40 -04:00 committed by GitHub
commit 2525dba1cb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -559,7 +559,7 @@ def list_tasks():
return jsonify({ return jsonify({
"success": True, "success": True,
"data": [t.to_dict() for t in tasks], "data": tasks,
"count": len(tasks) "count": len(tasks)
}) })