Skip to content

Commit 7e97e10

Browse files
committed
Fix ruff
1 parent b1a8e85 commit 7e97e10

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • src/executorlib/task_scheduler/interactive

src/executorlib/task_scheduler/interactive/shared.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ def _execute_task_with_cache(
147147
data_dict["output"] = output["result"]
148148
data_dict["runtime"] = time.time() - time_start
149149
dump(file_name=file_name, data_dict=data_dict)
150-
future_obj.set_result(result)
150+
future_obj.set_result(output["result"])
151151
elif isinstance(output["error"], ExecutorlibSocketError):
152152
return False
153153
else:

0 commit comments

Comments
 (0)