Skip to content

Commit 95ad495

Browse files
committed
Fix.
1 parent a502556 commit 95ad495

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/pytask_parallel/execute.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,9 @@ def pytask_execute_task(session: Session, task: PTask) -> Future[WrapperResult]:
195195

196196
if is_coiled_function(task):
197197
# Prevent circular import for coiled backend.
198-
from pytask_parallel.wrappers import rewrap_task_with_coiled_function
198+
from pytask_parallel.wrappers import ( # noqa: PLC0415
199+
rewrap_task_with_coiled_function,
200+
)
199201

200202
wrapper_func = rewrap_task_with_coiled_function(task)
201203

0 commit comments

Comments
 (0)