mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-18 06:21:40 +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):
|
class ClashGroup(TypedDict):
|
||||||
elements: dict[str, ifcopenshell.entity_instance]
|
elements: dict[str, ifcopenshell.entity_instance]
|
||||||
objects: dict
|
|
||||||
|
|
||||||
|
|
||||||
class Clasher:
|
class Clasher:
|
||||||
@@ -157,7 +156,7 @@ class Clasher:
|
|||||||
|
|
||||||
def create_group(self, name: str) -> None:
|
def create_group(self, name: str) -> None:
|
||||||
self.logger.info(f"Creating group {name}")
|
self.logger.info(f"Creating group {name}")
|
||||||
self.groups[name] = {"elements": {}, "objects": {}}
|
self.groups[name] = {"elements": {}}
|
||||||
|
|
||||||
def load_ifc(self, path: str) -> ifcopenshell.file:
|
def load_ifc(self, path: str) -> ifcopenshell.file:
|
||||||
start = time.time()
|
start = time.time()
|
||||||
|
|||||||
Reference in New Issue
Block a user