(unit: ifcopenshell.entity_instance)
| 956 | |
| 957 | |
| 958 | def get_unit_name(unit: ifcopenshell.entity_instance) -> Union[str, None]: |
| 959 | if unit.is_a("IfcNamedUnit"): |
| 960 | return val(unit.Name) |
| 961 | |
| 962 | |
| 963 | def get_created_by(element: ifcopenshell.entity_instance) -> Union[str, None]: |
no test coverage detected