[5] fix overwriting external vars

pull/1381/head
meisnate12 2 years ago
parent 9ebf2e178b
commit 896c9b9e74

@ -1 +1 @@
1.19.0-develop4
1.19.0-develop5

@ -312,7 +312,7 @@ class DataFile:
added_vars.pop(input_key)
elif overwrite_call:
variables[input_key] = input_value
else:
elif input_key not in added_vars:
added_vars[input_key] = input_value
for k, v in added_vars.items():
if k not in variables:

Loading…
Cancel
Save