Replies: 1 comment 1 reply
-
I can't reproduce your error with the files you provided. Did you change modelx's code by yourself? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I recently modified my model and saved it. But when I try to open the saved model, error messages shown.
Since it is simple model, I looked for the reason.
It turned out, in the
__init__.py
in the code of one of product line, the code has been changedbefore :
after :
as you can see, _spaces = [] has been changed to _space._parents = [].
It works again when I change the code from _space._parents =[] to _space = []
Is there reason why the code has been change? and How can I prevent to have the same error again?
FYI, I attach full error message and model that I used
test_model_common_after.zip
test_model_common_before.zip
Beta Was this translation helpful? Give feedback.
All reactions