File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2222* Fixed bug in ` Pointcloud.from_box() ` .
2323* Changed ` compas.scene.MeshObject ` to not use vertex coordinate caching because it is too fragile.
2424* Changed ` compas_rhino.scene.RhinoMeshObject ` to keep track of element-guid pairs in dicts.
25+ * Changed ` compas.scene.Scene._guids ` to a default value of ` [] ` .
2526
2627### Removed
2728
Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ def __init__(
111111 # which means that adding child objects will be added in context "None"
112112 self .context = context
113113 self ._item = item
114- self ._guids = None
114+ self ._guids = []
115115 self ._node = None
116116 self ._frame = frame
117117 self ._transformation = transformation
You can’t perform that action at this time.
0 commit comments