Skip to content

Commit 3e7a871

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent a76ad7f commit 3e7a871

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

pydra/engine/submitter.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -116,10 +116,7 @@ async def expand_runnable(self, runnable, wait=False, rerun=False):
116116
asyncio.create_task(load_and_run_async(task_pkl, sidx, self, rerun))
117117
)
118118
else:
119-
futures.add(
120-
self.worker.run_el((sidx, task_pkl, runnable), rerun=rerun)
121-
)
122-
119+
futures.add(self.worker.run_el((sidx, task_pkl, runnable), rerun=rerun))
123120

124121
if wait and futures:
125122
# if wait is True, we are at the end of the graph / state expansion.

0 commit comments

Comments
 (0)