We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2430032 commit 83ebd7cCopy full SHA for 83ebd7c
src/pyper/_core/task.py
@@ -7,6 +7,9 @@
7
8
class Task:
9
"""The representation of a function within a Pipeline."""
10
+
11
+ __slots__ = "is_gen", "is_async", "func", "join", "concurrency", "throttle", "daemon"
12
13
def __init__(
14
self,
15
func: Callable,
0 commit comments