From 46bc71eac9b2f01db81f30dbd2e2ff285bf8a9b0 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Mon, 26 Jun 2023 10:33:07 +0500 Subject: [PATCH] Fixing bug after 28cc168 Was causing some tests to fail --- src/blenderbim/blenderbim/tool/material.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/blenderbim/blenderbim/tool/material.py b/src/blenderbim/blenderbim/tool/material.py index 6ffeb8f587..0cf0aacdb1 100644 --- a/src/blenderbim/blenderbim/tool/material.py +++ b/src/blenderbim/blenderbim/tool/material.py @@ -147,10 +147,9 @@ class Material(blenderbim.core.tool.Material): @classmethod def is_a_material_set(cls, material): return material.is_a() in [ - "IfcMaterialProfile", - "IfcMaterialLayer", - "IfcMaterialConstituent", - "IfcMaterialList", + "IfcMaterialConstituentSet", + "IfcMaterialLayerSet", + "IfcMaterialProfileSet", ] @classmethod