From a01767d6b82473a9473440f7ab4aa6c4cc584d76 Mon Sep 17 00:00:00 2001 From: DevForge Engineer Date: Mon, 18 May 2026 23:43:22 -0400 Subject: [PATCH] fix: replace Unicode checkmarks with ASCII in formats table to prevent cp1252 crash on Windows --- src/datamorph/cli.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/datamorph/cli.py b/src/datamorph/cli.py index 2ab696f..0f934fe 100644 --- a/src/datamorph/cli.py +++ b/src/datamorph/cli.py @@ -214,9 +214,9 @@ def formats_cmd() -> None: all_formats = supported_formats() for fmt in all_formats: - can_read = "✓" if fmt in _READERS else "" - can_write = "✓" if fmt in _WRITERS else "" - can_stream = "✓" if fmt in ("csv", "jsonl", "avro") else "" + can_read = "yes" if fmt in _READERS else "" + can_write = "yes" if fmt in _WRITERS else "" + can_stream = "yes" if fmt in ("csv", "jsonl", "avro") else "" table.add_row(fmt, can_read, can_write, can_stream) console.print(table)