Skip to content

Commit 32c00e4

Browse files
committed
correct oversealous search and replace
1 parent cdf7fc4 commit 32c00e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SpiffWorkflow/bpmn/specs/bpmn_task_spec.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def _on_complete_hook(self, my_task):
9898

9999
for obj in self.data_input_associations:
100100
# Remove the any copied input variables that might not have already been removed
101-
obj.delete(my_task)
101+
my_task.data.pop(obj.bpmn_id, None)
102102

103103
super()._on_complete_hook(my_task)
104104

0 commit comments

Comments
 (0)