From adfb6f8be687e985cd0878fac046b9c5e0fd92db Mon Sep 17 00:00:00 2001 From: Xinlong Hu Date: Wed, 10 Sep 2025 15:11:19 -0500 Subject: [PATCH] nit Prevent path from wrapping to next line in comparison report --- dev_scripts/evaluate_cflow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev_scripts/evaluate_cflow.py b/dev_scripts/evaluate_cflow.py index e625afa..f4d636b 100644 --- a/dev_scripts/evaluate_cflow.py +++ b/dev_scripts/evaluate_cflow.py @@ -254,7 +254,7 @@ def compare_and_report(commit_results: EvaluationResult, local_results: Evaluati report_console.print(f"\n{title}") for p in moved_paths: console.print(f"- {p}") - report_console.print(f"- {p}") + report_console.print(f"- {p}", soft_wrap=True) # 3. New and Removed Items new_items = sorted([p for p in all_paths if commit_map.get(p) is None])