(*values: Any)
| 397 | |
| 398 | |
| 399 | def pick_first(*values: Any) -> str: |
| 400 | for value in values: |
| 401 | text = clean_text(value) |
| 402 | if text: |
| 403 | return text |
| 404 | return "" |
| 405 | |
| 406 | |
| 407 | def parse_price_and_currency(text: str) -> Tuple[str, str]: |
no test coverage detected