Skip to content

Commit

Permalink
Update pydra/engine/helpers.py
Browse files Browse the repository at this point in the history
Co-authored-by: Chris Markiewicz <[email protected]>
  • Loading branch information
tclose and effigies authored May 23, 2024
1 parent 97124a7 commit 5e01f5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pydra/engine/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,7 @@ def argstr_formatting(argstr, inputs, value_updates=None):
if value_updates:
inputs_dict.update(value_updates)
# getting all fields that should be formatted, i.e. {field_name}, ...
inp_fields = re.findall(r"{(\w+)(?::[0-9.]+f|\[[\w]+\])?}", argstr)
inp_fields = parse_format_string(argstr)
val_dict = {}
for fld_name in inp_fields:
fld_value = inputs_dict[fld_name]
Expand Down

0 comments on commit 5e01f5e

Please sign in to comment.