Skip to content

Commit dcfd0dc

Browse files
committed
FIX: Only evolve inputs if inputs are provided
1 parent 801226e commit dcfd0dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pydra/engine/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ def __init__(
161161
raise ValueError(f"Unknown input set {inputs!r}")
162162
inputs = self._input_sets[inputs]
163163

164-
self.inputs = attr.evolve(self.inputs, **inputs)
164+
self.inputs = attr.evolve(self.inputs, **inputs)
165165

166166
# checking if metadata is set properly
167167
self.inputs.check_metadata()

0 commit comments

Comments
 (0)