We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88befea commit bc5a291Copy full SHA for bc5a291
1 file changed
src/ifcclash/ifcclash/ifcclash.py
@@ -75,7 +75,6 @@ class ClashSet(TypedDict):
75
76
class ClashGroup(TypedDict):
77
elements: dict[str, ifcopenshell.entity_instance]
78
- objects: dict
79
80
81
class Clasher:
@@ -157,7 +156,7 @@ def process_clash_set(self, clash_set: ClashSet) -> None:
157
156
158
def create_group(self, name: str) -> None:
159
self.logger.info(f"Creating group {name}")
160
- self.groups[name] = {"elements": {}, "objects": {}}
+ self.groups[name] = {"elements": {}}
161
162
def load_ifc(self, path: str) -> ifcopenshell.file:
163
start = time.time()
0 commit comments