(*values: Any)
| 747 | |
| 748 | |
| 749 | def _first_non_empty(*values: Any) -> str: |
| 750 | for value in values: |
| 751 | text = _clean_text(value) |
| 752 | if text: |
| 753 | return text |
| 754 | return "" |
| 755 | |
| 756 | |
| 757 | def _unique_preserve_order(items: List[str]) -> List[str]: |
no test coverage detected