Skip to content

Commit 89b7744

Browse files
committed
fix.
1 parent 4f9424f commit 89b7744

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

src/_pytask/shared.py

+1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ class CoiledFunction: # type: ignore[no-redef]
3838
keepalive: str | None
3939

4040

41+
4142
__all__ = [
4243
"convert_to_enum",
4344
"find_duplicates",

tests/test_shared.py

-7
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,3 @@ def wrapper():
7474

7575
decorated = decorator(task)
7676
assert unwrap_task_function(decorated) is task
77-
78-
from _pytask.shared import CoiledFunction
79-
80-
coiled_function = functools.wraps(task)(
81-
CoiledFunction(function=task, cluster_kwargs={}, environ={}, keepalive=None)
82-
)
83-
assert unwrap_task_function(coiled_function) is coiled_function

0 commit comments

Comments
 (0)