From 5f094f6a957943dacd43a3f7717bcb1803684866 Mon Sep 17 00:00:00 2001 From: CyrilWaechter Date: Fri, 25 Nov 2022 19:01:07 +0100 Subject: [PATCH] Fix IfcSystem assignment bug introduced in f0b1935 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixing my own bug… Note : always run all test before pushing not only the one which used to fail… --- src/ifcopenshell-python/ifcopenshell/api/system/assign_system.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ifcopenshell-python/ifcopenshell/api/system/assign_system.py b/src/ifcopenshell-python/ifcopenshell/api/system/assign_system.py index 113e9e3b0a..8906a01a7d 100644 --- a/src/ifcopenshell-python/ifcopenshell/api/system/assign_system.py +++ b/src/ifcopenshell-python/ifcopenshell/api/system/assign_system.py @@ -36,6 +36,7 @@ ASSIGNABLE_DICT = { ), "IfcDistributionSystem": ("IfcDistributionElement",), "IfcStructuralAnalysisModel": ("IfcStructuralMember", "IfcStructuralConnection"), + "IfcSystem": ("IfcProduct",), "IfcGroup": ("IfcObjectDefinition",), }