Skip to content

Commit

Permalink
removed commented out code in combine()
Browse files Browse the repository at this point in the history
  • Loading branch information
tclose committed Jul 12, 2023
1 parent 7e15285 commit e4755b7
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions pydra/engine/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -708,16 +708,6 @@ def combine(
"combiner has been already set, "
"if you want to overwrite it - use overwrite=True"
)
# if kwargs:
# new_inputs = {}
# for inpt_name, inpt_val in kwargs.items():
# if not isinstance(inpt_val, LazyField):
# raise TypeError(
# "Only lazy-fields can be set as inputs in the combine method "
# f"not {inpt_name}:{inpt_val}"
# )
# new_inputs[inpt_name] = inpt_val.combine()
# self.inputs = attr.evolve(self.inputs, **new_inputs)
if not self.state:
self.split(splitter=None)
# a task can have a combiner without a splitter
Expand Down

0 comments on commit e4755b7

Please sign in to comment.