From 6858cccdcc92f571153157c903f5d29c54c217de Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Sat, 18 Jul 2026 22:00:36 +0500 Subject: [PATCH] settings_mixin.build_parser: fix `ty == "bool"` typo, should be an assignment (cherry picked from commit f744753726d4cd6bf72d0c786339247ef54f6b7d) --- src/ifcopenshell-python/ifcopenshell/geom/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ifcopenshell-python/ifcopenshell/geom/main.py b/src/ifcopenshell-python/ifcopenshell/geom/main.py index 1ffffce13e..08ce72fae7 100644 --- a/src/ifcopenshell-python/ifcopenshell/geom/main.py +++ b/src/ifcopenshell-python/ifcopenshell/geom/main.py @@ -292,7 +292,7 @@ class settings_mixin: } for nm in self.setting_names(): if nm == "use-python-opencascade": - ty == "bool" + ty = "bool" else: ty = self.get_type(nm) if ty == "bool":