[Fix] Fix Typo in multi_step assignment (#397)

Co-authored-by: Tim Lorsbach <tim@lorsba.ch>
Reviewed-on: enviPath/enviPy#397
This commit is contained in:
2026-05-21 09:56:21 +12:00
parent 76e63fda2c
commit 8079b80d57

View File

@ -1970,7 +1970,7 @@ def add_pathway_edge(request, package_uuid, pathway_uuid, e: Form[CreateEdge]):
if e.multistep and e.multistep.strip() == "true": if e.multistep and e.multistep.strip() == "true":
reaction = new_e.edge_label reaction = new_e.edge_label
reaction.multistep = True reaction.multi_step = True
reaction.save() reaction.save()
# Update depths as sideeffect of above operation # Update depths as sideeffect of above operation