Skip to content

Commit f24e444

Browse files
committed
fix
1 parent 2d9f84a commit f24e444

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/executorlib/task_scheduler/interactive/dependency.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,8 @@ def _execute_tasks_with_dependencies(
329329
refresh_rate=refresh_rate,
330330
)
331331
elif task_return_dict is not None:
332-
future_lookup_dict = {} # we need this future dict later on to resolve the dependencies
332+
# we need this future dict later on to resolve the dependencies
333+
future_lookup_dict = {}
333334
for k, v in task_return_dict.items():
334335
future_lookup_dict[k] = executor.submit(
335336
fn=v["fn"],

0 commit comments

Comments
 (0)