-
Notifications
You must be signed in to change notification settings - Fork 2
Closed
Labels
Milestone
Description
Defined in JSON file is:
"val10" : true,
"val11" : "true",
"val12" : false,
"val13" : "false",
"val14" : null,
"val15" : "null"
JsonPreprocessor returns:
'val10': True,
'val11': '"true"',
'val12': False,
'val13': '"false"',
'val14': None,
'val15': 'null'
The value of string parameters val11 and val13 contain the quotes that are used to define the strings in JSON file.
But expected is:
'val11': 'true',
'val13': 'false',
Metadata
Metadata
Assignees
Labels
Projects
Status
Done