Skip to content

Commit bc5a291

Browse files
committed
ifcclash - remove 'objects' dict item
It seems to be part of legacy code that's no longer used since 18c38b3
1 parent 88befea commit bc5a291

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/ifcclash/ifcclash/ifcclash.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ class ClashSet(TypedDict):
7575

7676
class ClashGroup(TypedDict):
7777
elements: dict[str, ifcopenshell.entity_instance]
78-
objects: dict
7978

8079

8180
class Clasher:
@@ -157,7 +156,7 @@ def process_clash_set(self, clash_set: ClashSet) -> None:
157156

158157
def create_group(self, name: str) -> None:
159158
self.logger.info(f"Creating group {name}")
160-
self.groups[name] = {"elements": {}, "objects": {}}
159+
self.groups[name] = {"elements": {}}
161160

162161
def load_ifc(self, path: str) -> ifcopenshell.file:
163162
start = time.time()

0 commit comments

Comments
 (0)