You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you load a yaml model via YamlModel.load_from_yaml(...) entries for blocks, that are not present in the yaml, are not created in the model._yaml_model.
Problem: e.g. the yaml does not contain an observable, and later I want to modify the model via model.add_observable. Since the dict of model._yaml_model does not contain a observable entry, this throws an Error.
The text was updated successfully, but these errors were encountered:
If you load a yaml model via
YamlModel.load_from_yaml(...)
entries for blocks, that are not present in the yaml, are not created in themodel._yaml_model
.Problem: e.g. the yaml does not contain an observable, and later I want to modify the
model
viamodel.add_observable
. Since the dict ofmodel._yaml_model
does not contain a observable entry, this throws an Error.The text was updated successfully, but these errors were encountered: