From f7d39ef642a16f4476442b0c277ef647d090abb6 Mon Sep 17 00:00:00 2001 From: technik Date: Thu, 5 Feb 2026 15:32:04 +0100 Subject: [PATCH] suisa-convert-acr-v4.py aktualisiert --- suisa-convert-acr-v4.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/suisa-convert-acr-v4.py b/suisa-convert-acr-v4.py index 532ae05..ad7bab9 100644 --- a/suisa-convert-acr-v4.py +++ b/suisa-convert-acr-v4.py @@ -133,7 +133,7 @@ def format_report(input_path: Path, output_path: Path) -> None: df = _build_dataframe(input_path) df.to_excel(output_path, index=False) _autofit_and_align(output_path) - print(f"✅ Formatiertes Reporting gespeichert → {output_path}") + print(f"Formatiertes Reporting gespeichert → {output_path}") # --------------------------------------------------------------------------- # CLI‑Entry @@ -150,9 +150,9 @@ if __name__ == "__main__": if alt.exists(): in_path = alt else: - sys.exit(f"❌ Datei nicht gefunden: {in_path} (auch nicht {alt})") + sys.exit(f"Datei nicht gefunden: {in_path} (auch nicht {alt})") elif not in_path.exists(): - sys.exit(f"❌ Datei nicht gefunden: {in_path}") + sys.exit(f"Datei nicht gefunden: {in_path}") out_path = Path(args.output) if args.output else in_path.with_name(in_path.stem + "_formatiert.xlsx") format_report(in_path, out_path)