We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 025fada commit 90a4e27Copy full SHA for 90a4e27
src/normalize_json/normalize.py
@@ -208,7 +208,7 @@ def translate(
208
elif mapped_name in flat_obj_arr and flat_obj_arr[mapped_name] != None:
209
initial_value = flat_obj_arr.get(mapped_name)
210
break
211
- elif mapped_name[:2] == "{{":
+ elif mapped_name[:2] == "{{" and mapped_name[:-2] == "}}":
212
var_name = mapped_name[2:].replace(' ', '')[:-2]
213
214
0 commit comments