(element: ifcopenshell.entity_instance)
| 961 | |
| 962 | |
| 963 | def get_created_by(element: ifcopenshell.entity_instance) -> Union[str, None]: |
| 964 | if getattr(element, "OwnerHistory", None): |
| 965 | return get_email_from_history(element.OwnerHistory) |
| 966 | |
| 967 | |
| 968 | def get_email_from_history(element: ifcopenshell.entity_instance) -> Union[str, None]: |
no test coverage detected