diff --git a/src/ifcwrap/IfcParseWrapper.i b/src/ifcwrap/IfcParseWrapper.i index c63b931c7e..c8f94f44db 100644 --- a/src/ifcwrap/IfcParseWrapper.i +++ b/src/ifcwrap/IfcParseWrapper.i @@ -737,6 +737,10 @@ static IfcUtil::ArgumentType helper_fn_attribute_type(const IfcUtil::IfcBaseClas bool v = arg; return pythonize(v); break; } + case IfcUtil::Argument_LOGICAL: { + boost::logic::tribool v = arg; + return pythonize(v); + break; } case IfcUtil::Argument_DOUBLE: { double v = arg; return pythonize(v);