(element: ifcopenshell.entity_instance)
| 225 | |
| 226 | |
| 227 | def get_classification_name(element: ifcopenshell.entity_instance) -> Union[str, None]: |
| 228 | references = list(ifcopenshell.util.classification.get_references(element)) |
| 229 | if references: |
| 230 | return references[0].Name |
| 231 | |
| 232 | |
| 233 | def get_property( |
no test coverage detected