Print a single sanitized value per line for pipe-friendly list output.
(value: str)
| 154 | |
| 155 | |
| 156 | def print_plain_item(value: str) -> None: |
| 157 | """Print a single sanitized value per line for pipe-friendly list output.""" |
| 158 | print(sanitize_tsv(str(value))) |
| 159 | |
| 160 | |
| 161 | def sanitize_tsv(value: str) -> str: |