Skip to content

Commit

Permalink
Fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
seallard committed Nov 14, 2023
1 parent 6929157 commit 72dc5c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trailblazer/server/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def analysis(analysis_id):
return abort(404)

if request.method == "PUT":
store.update_analysis(request.json)
store.update_analysis(analysis_id=analysis_id, data=request.json)

data = analysis.to_dict()
data["jobs"] = [job.to_dict() for job in analysis.jobs]
Expand Down

0 comments on commit 72dc5c3

Please sign in to comment.