diff --git a/src/ifccsv/ifccsv.py b/src/ifccsv/ifccsv.py index f1ced2f432..95ee76ac6b 100755 --- a/src/ifccsv/ifccsv.py +++ b/src/ifccsv/ifccsv.py @@ -90,6 +90,10 @@ class IfcAttributeSetter: if property.Name != name: continue + if value.lower() in ["null", "none"]: + property.NominalValue = None + continue + # In lieu of loading a map for data casting, we only have four # options, which this ugly method will determine. if property.NominalValue is None: