-
Notifications
You must be signed in to change notification settings - Fork 2
Closed
Description
JSON code executed
{
${testdict1.subKey1.subKey2.subKey3} : {"subKey4" : 1}
}
results in valid values:
{'testdict1': {'subKey1': {'subKey2': {'subKey3': {'subKey4': 1}}}}}
Same code (same JSON file) executed again (within same Python process) results in an empty dictionary:
{}
This is if I use the same JsonPreprocessor object for both executions and also if I create a new object before each execution.
But the result should be the same in all cases.
Metadata
Metadata
Assignees
Labels
Projects
Status
Done