(value: Any)
| 58 | |
| 59 | |
| 60 | def _strings(value: Any) -> list[str]: |
| 61 | if not isinstance(value, list): |
| 62 | return [] |
| 63 | normalized: list[str] = [] |
| 64 | for item in value: |
| 65 | text = _text(item, "") |
| 66 | if text: |
| 67 | normalized.append(text) |
| 68 | return normalized |
| 69 | |
| 70 | |
| 71 | def _cell(value: Any) -> str: |
no test coverage detected