Fix bug where you couldn't set logical properties in psets. See #1086.

This commit is contained in:
Dion Moult
2021-03-24 14:57:52 +11:00
parent 6232ee36f9
commit 41a694d0dc
@@ -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"