Compare commits

..

2 Commits

Author SHA1 Message Date
izzy lyseggen 40da0429d2 Merge pull request #29 from specklesystems/izzy/ifc-alignment
fix(streams): *correctly* detach collections
2021-06-08 12:06:29 +01:00
izzy lyseggen 26d8bef343 fix(streams): *correctly* detach collections
lmao i'm dumb - one line fix here
2021-06-08 12:03:28 +01:00
+1 -1
View File
@@ -173,7 +173,7 @@ def create_nested_hierarchy(base, hierarchy, objects):
name = hierarchy.pop()
if not hasattr(child, name):
child[name] = Base()
base.add_detachable_attrs({name})
child.add_detachable_attrs({name})
child = child[name]
# TODO: what do we call this attribute?