From f744753726d4cd6bf72d0c786339247ef54f6b7d 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 --- 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 bf5fc00098..b3c9afc869 100644 --- a/src/ifcopenshell-python/ifcopenshell/geom/main.py +++ b/src/ifcopenshell-python/ifcopenshell/geom/main.py @@ -254,7 +254,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":