MCPcopy Create free account
hub / github.com/bigdra50/unity-cli / print_plain_item

Function print_plain_item

unity_cli/cli/output.py:156–158  ·  view source on GitHub ↗

Print a single sanitized value per line for pipe-friendly list output.

(value: str)

Source from the content-addressed store, hash-verified

154
155
156def 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
161def sanitize_tsv(value: str) -> str:

Callers 2

tests_listFunction · 0.90
menu_listFunction · 0.90

Calls 1

sanitize_tsvFunction · 0.85

Tested by 1

tests_listFunction · 0.72