Skip to content

Commit

Permalink
debugger hangs on this statement, so using different iteration method
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeByDrescher committed Oct 4, 2024
1 parent 7c06ffb commit a323d5e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion biosimulators_utils/sedml/exec.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,8 @@ def exec_task(task, variables, preprocessed_task=None, log=None, config=None, **
' ' * 2 * (indent + 2),
('\n' + ' ' * 2 * (indent + 2)).join(sorted('`' + output.id + '`' for output in doc.outputs)),
))
for i_task, task in enumerate(expected_tasks):
for i_task in range(0, len(expected_tasks)):
task = expected_tasks[i_task]
task_status = Status.QUEUED
task_exception = None
print('{}Executing task {}: `{}`'.format(' ' * 2 * indent, i_task + 1, task.id))
Expand Down

0 comments on commit a323d5e

Please sign in to comment.