From 6046a4bdd9076e514f39711e32830a56892d8a05 Mon Sep 17 00:00:00 2001 From: Ryan Schultz Date: Sun, 5 May 2024 14:51:12 -0500 Subject: [PATCH] proposed fix for #4622: adding IfcTypeProduct as classes that can be reassigned --- src/blenderbim/blenderbim/bim/module/root/data.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/blenderbim/blenderbim/bim/module/root/data.py b/src/blenderbim/blenderbim/bim/module/root/data.py index 18f7fbffcd..b5e5081cec 100644 --- a/src/blenderbim/blenderbim/bim/module/root/data.py +++ b/src/blenderbim/blenderbim/bim/module/root/data.py @@ -59,6 +59,7 @@ class IfcClassData: "IfcContext", "IfcAnnotation", "IfcRelSpaceBoundary", + "IfcTypeProduct", ] version = tool.Ifc.get_schema() if version == "IFC2X3": @@ -70,6 +71,7 @@ class IfcClassData: "IfcStructuralItem", "IfcAnnotation", "IfcRelSpaceBoundary", + "IfcTypeProduct", ] return [(e, e, (get_entity_doc(version, e) or {}).get("description", "")) for e in products]