Prevent path from wrapping to next line in comparison report
This commit is contained in:
Xinlong Hu
2025-09-10 15:11:19 -05:00
parent d85b0830f7
commit adfb6f8be6
+1 -1
View File
@@ -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])