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
parent
The object_properties module does not import cybox.core.
object_properties
cybox.core
>>> from cybox.objects.address_object import Address >>> addr = Address() >>> addr.parent.id_ Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/Users/bworrell/projects/python-cybox/cybox/common/object_properties.py", line 90, in parent self._parent = cybox.core.Object(self) AttributeError: 'module' object has no attribute 'core' >>> cybox.__version__ '2.1.0.12.dev0'
The text was updated successfully, but these errors were encountered:
Added cybox.core imports to ObjectProperties.parent property getters …
e7b7a72
…and setters. Fixes #254.
Added unit test for #254 and isolate() and isolation() decorators and…
b5673a5
… context managers.
9bd4566
5ae1a27
c889ade
@bworrell did all the work for this, despite it being my commit that closed it.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
The
object_properties
module does not importcybox.core
.The text was updated successfully, but these errors were encountered: