We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When accessing an object's metadata, the _parent reference is never set. See the Block.metadata property for example:
_parent
nixpy/nixio/block.py
Line 582 in 9b63d54
Objects accessed through a Container, on the other hand, always get instantiated with a parent reference:
nixpy/nixio/container.py
Line 33 in 9b63d54
This causes issues when attempting to traverse the parent chain:
nixpy/nixio/entity.py
Lines 108 to 115 in 9b63d54
We either need to make metadata Section instantiation always set the parent or have a dynamic way of creating the parent link when it's missing.
This is the source of the bug in a recent Neo PR: NeuralEnsemble/python-neo#806
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
When accessing an object's metadata, the
_parent
reference is never set. See the Block.metadata property for example:nixpy/nixio/block.py
Line 582 in 9b63d54
Objects accessed through a Container, on the other hand, always get instantiated with a parent reference:
nixpy/nixio/container.py
Line 33 in 9b63d54
This causes issues when attempting to traverse the parent chain:
nixpy/nixio/entity.py
Lines 108 to 115 in 9b63d54
We either need to make metadata Section instantiation always set the parent or have a dynamic way of creating the parent link when it's missing.
This is the source of the bug in a recent Neo PR:
NeuralEnsemble/python-neo#806
The text was updated successfully, but these errors were encountered: