From d772b24bd69fa9bf41ee7e134e3b3b1a58790f72 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Tue, 14 Jul 2026 18:42:50 +0500 Subject: [PATCH] geometry.add_boolean: fix typo in the class name MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🫣🫣 --- .../ifcopenshell/api/geometry/add_boolean.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ifcopenshell-python/ifcopenshell/api/geometry/add_boolean.py b/src/ifcopenshell-python/ifcopenshell/api/geometry/add_boolean.py index 80ebf5bb89..6c8406146c 100644 --- a/src/ifcopenshell-python/ifcopenshell/api/geometry/add_boolean.py +++ b/src/ifcopenshell-python/ifcopenshell/api/geometry/add_boolean.py @@ -90,9 +90,9 @@ def add_boolean( booleans = [] for second_item in second_items: - if first.is_a("IfcTesselatedFaceSet"): + if first.is_a("IfcTessellatedFaceSet"): first.Closed = True # For now, trust the user to do the right thing. - if second_item.is_a("IfcTesselatedFaceSet"): + if second_item.is_a("IfcTessellatedFaceSet"): second_item.Closed = True # For now, trust the user to do the right thing. if ( operator == "DIFFERENCE"