Skip to content

Commit

Permalink
fix(task): set output name correctly
Browse files Browse the repository at this point in the history
If we just use `{{name}}` queenbee won't know where to fetch the variable from. Or at least queenbee-argo doesn't 😅
  • Loading branch information
AntoineDao authored and mostaphaRoudsari committed Jul 1, 2022
1 parent a9e2cf0 commit a258ce7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pollination/three_phase/three_phase/_daylight_matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,6 @@ def calculate_daylight_matrix(
return [
{
'from': FluxTransfer()._outputs.flux_mtx,
'to': '{{name}}.dmtx'
'to': '{{inputs.name}}.dmtx'
}
]

0 comments on commit a258ce7

Please sign in to comment.