Skip to content

Commit

Permalink
Fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
alicederyn committed Oct 14, 2024
1 parent 144fae1 commit fd989e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hera/workflows/_meta_mixins.py
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ def _get_param_items_from_source(source: Callable) -> List[Parameter]:
non_default_parameters[0].value == "{{item}}"
else:
for param in non_default_parameters:
param.value = "{{item." + param.name + "}}"
param.value = "{{item." + str(param.name) + "}}"
return non_default_parameters


Expand Down

0 comments on commit fd989e9

Please sign in to comment.