fix: incorrect method name

This commit is contained in:
2026-01-31 19:45:06 +00:00
parent b058853f3c
commit ee65b894dd

View File

@@ -74,7 +74,7 @@ def get_summary():
return jsonify({"error": "No data uploaded"}), 400
try:
return jsonify(stat_obj.get_summary()), 200
return jsonify(stat_obj.summary()), 200
except ValueError as e:
return jsonify({"error": f"Malformed or missing data: {str(e)}"}), 400
except Exception as e: