mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-09 09:21:46 +00:00
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:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user