ifcclash - remove 'objects' dict item

It seems to be part of legacy code that's no longer used since 18c38b3
This commit is contained in:
Andrej730
2025-05-22 11:54:14 +05:00
parent 88befea174
commit bc5a291321
+1 -2
View File
@@ -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()