mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-11 18:16:40 +00:00
Fix bug where you couldn't set logical properties in psets. See #1086.
This commit is contained in:
@@ -179,7 +179,7 @@ class Data:
|
||||
data_type = "integer"
|
||||
elif "<integer>" in data_type:
|
||||
data_type = "integer"
|
||||
elif "<boolean>" in data_type:
|
||||
elif "<boolean>" in data_type or "<logical>" in data_type:
|
||||
data_type = "boolean"
|
||||
elif "<enumeration" in data_type:
|
||||
data_type = "enum"
|
||||
|
||||
Reference in New Issue
Block a user