-
Notifications
You must be signed in to change notification settings - Fork 2
Closed
Description
This works like expected (with list hard coded inside dictparam):
"dictparam" : {"A" : ["A", "B"]},
"stringparam" : "A",
"intparam" : 0,
${dictparam.${stringparam}}[${intparam}] : "C"
Outcome:
{'dictparam': {'A': ['C', 'B']}, 'intparam': 0, 'stringparam': 'A'}
But when I put the list inside a separate parameter, it went wrong;
"listparam" : ["A", "B"],
"dictparam" : {"A" : ${listparam}},
"stringparam" : "A",
"intparam" : 0,
${dictparam.${stringparam}}[${intparam}] : "C"
Outcome:
Error: 'Invalid nested parameter format: ${listparam}}, - The double quotes are missing!!!'!
Issue maybe similar to:
#118
Metadata
Metadata
Assignees
Labels
Projects
Status
Done