remove ununsed variable

This commit is contained in:
Elizabeth Esswein 2023-03-15 11:10:02 -04:00
parent 9d177b6939
commit 9d662f9fac
1 changed files with 1 additions and 1 deletions

View File

@ -600,7 +600,7 @@ def process_instance_task_list(
last_change = step_details[-1].end_in_seconds or 0 last_change = step_details[-1].end_in_seconds or 0
for spiff_task in tasks.values(): for spiff_task in tasks.values():
restore_task(spiff_task, last_change) restore_task(spiff_task, last_change)
for spiff_task_id, subprocess in subprocesses.items(): for subprocess in subprocesses.values():
for spiff_task in subprocess["tasks"].values(): for spiff_task in subprocess["tasks"].values():
restore_task(spiff_task, last_change) restore_task(spiff_task, last_change)