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 9541675 commit 2f77b22Copy full SHA for 2f77b22
pydra/compose/python.py
@@ -81,15 +81,6 @@ class out(base.Out):
81
pass
82
83
84
-@dataclass_transform(
85
- kw_only_default=True,
86
- field_specifiers=(out,),
87
-)
88
-def outputs(wrapped):
89
- """Decorator to specify the output fields of a shell command is a dataclass-style type"""
90
- return wrapped
91
-
92
93
@dataclass_transform(
94
kw_only_default=True,
95
field_specifiers=(arg,),
@@ -225,7 +216,7 @@ def _from_job(cls, job: "Job[PythonTask]") -> ty.Self:
225
216
return outputs
226
217
227
218
228
-PythonOutputsType = ty.TypeVar("OutputType", bound=PythonOutputs)
219
+PythonOutputsType = ty.TypeVar("PythonOutputsType", bound=PythonOutputs)
229
220
230
221
231
222
@attrs.define(kw_only=True, auto_attribs=False, eq=False, repr=False)
0 commit comments