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.
2 parents 5f5044d + 3219549 commit 219c721Copy full SHA for 219c721
pydra/engine/core.py
@@ -454,7 +454,9 @@ def __call__(
454
455
def _modify_inputs(self):
456
"""Update and preserve a Task's original inputs"""
457
- orig_inputs = attr.asdict(self.inputs, recurse=False)
+ orig_inputs = {
458
+ k: deepcopy(v) for k, v in attr.asdict(self.inputs, recurse=False).items()
459
+ }
460
map_copyfiles = copyfile_input(self.inputs, self.output_dir)
461
modified_inputs = template_update(
462
self.inputs, self.output_dir, map_copyfiles=map_copyfiles
0 commit comments