settings_mixin.build_parser: fix ty == "bool" typo, should be an assignment

This commit is contained in:
Andrej730
2026-07-18 22:00:36 +05:00
parent 2e21fc5a98
commit f744753726
@@ -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":