mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-19 14:41:25 +00:00
settings_mixin.build_parser: fix ty == "bool" typo, should be an assignment
This commit is contained in:
@@ -254,7 +254,7 @@ class settings_mixin:
|
|||||||
}
|
}
|
||||||
for nm in self.setting_names():
|
for nm in self.setting_names():
|
||||||
if nm == "use-python-opencascade":
|
if nm == "use-python-opencascade":
|
||||||
ty == "bool"
|
ty = "bool"
|
||||||
else:
|
else:
|
||||||
ty = self.get_type(nm)
|
ty = self.get_type(nm)
|
||||||
if ty == "bool":
|
if ty == "bool":
|
||||||
|
|||||||
Reference in New Issue
Block a user