From b6b553e7264c54b38597d82fae4906950fd2e641 Mon Sep 17 00:00:00 2001 From: Massimo Fabbro Date: Sun, 9 Mar 2025 11:40:43 +0100 Subject: [PATCH] Fix #6271 Fix a bug about wrong net values qto calculation with IfcOpenshell --- src/ifc5d/ifc5d/qto.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ifc5d/ifc5d/qto.py b/src/ifc5d/ifc5d/qto.py index 2863634f07..417a2efee5 100644 --- a/src/ifc5d/ifc5d/qto.py +++ b/src/ifc5d/ifc5d/qto.py @@ -255,7 +255,7 @@ class IfcOpenShell: tasks.append((iterator, gross_qtos)) if net_qtos: - for iterator in IfcOpenShell.create_iterators(ifc_file, cls.gross_settings, list(elements)): + for iterator in IfcOpenShell.create_iterators(ifc_file, cls.net_settings, list(elements)): tasks.append((iterator, net_qtos)) cls.unit_converter = SI2ProjectUnitConverter(ifc_file)