I have been loading variables using dictionary objects, but the values get updated. What am I missing here?
assert "run_LMM" in all_variables.keys()
locals().update(all_variables)
assert "run_LMM" in locals()
The last line is were I get an assertion error. What's going on?