From bc5a29132120adbf0f2db48c87f2bf7a28835e94 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Thu, 22 May 2025 11:54:14 +0500 Subject: [PATCH] ifcclash - remove 'objects' dict item It seems to be part of legacy code that's no longer used since 18c38b3 --- src/ifcclash/ifcclash/ifcclash.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/ifcclash/ifcclash/ifcclash.py b/src/ifcclash/ifcclash/ifcclash.py index 201c2518d6..5769a554b1 100644 --- a/src/ifcclash/ifcclash/ifcclash.py +++ b/src/ifcclash/ifcclash/ifcclash.py @@ -75,7 +75,6 @@ class ClashSet(TypedDict): class ClashGroup(TypedDict): elements: dict[str, ifcopenshell.entity_instance] - objects: dict class Clasher: @@ -157,7 +156,7 @@ class Clasher: def create_group(self, name: str) -> None: self.logger.info(f"Creating group {name}") - self.groups[name] = {"elements": {}, "objects": {}} + self.groups[name] = {"elements": {}} def load_ifc(self, path: str) -> ifcopenshell.file: start = time.time()