From e7a46284146792fc1ea37f6195d3d36a4dc1e9ad Mon Sep 17 00:00:00 2001 From: Alpamys Date: Sun, 5 Jul 2026 11:31:02 +0500 Subject: [PATCH] fix(shrink): ASCII-safe help strings (em-dash -> hyphen) (v0.71.29) --- src/soup_cli/commands/shrink.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/soup_cli/commands/shrink.py b/src/soup_cli/commands/shrink.py index 9aef5b8..c73783e 100644 --- a/src/soup_cli/commands/shrink.py +++ b/src/soup_cli/commands/shrink.py @@ -252,12 +252,12 @@ def shrink( None, "--drop-layers", help="Explicit number of contiguous layers to drop." ), calib: str = typer.Option( - ..., "--calib", help="Calibration JSONL (prompts) — must stay under cwd." + ..., "--calib", help="Calibration JSONL (prompts) - must stay under cwd." ), heal: Optional[str] = typer.Option( None, "--heal", - help="Heal JSONL (chat rows) — distill the original into the pruned model.", + help="Heal JSONL (chat rows) - distill the original into the pruned model.", ), heal_steps: int = typer.Option( 200, "--heal-steps", help="Approx. optimiser steps for the distill heal."