Skip to content

Invalid nested parameter format (3) #195

@HolQue

Description

@HolQue

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

Projects

Status

Done

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions