From c27a75bc26f71460c8a54c3106bc966f4b73be7b Mon Sep 17 00:00:00 2001 From: AI Christianson Date: Sat, 8 Feb 2025 12:44:55 -0500 Subject: [PATCH] get rid of pointless truncation message --- ra_aid/project_info.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/ra_aid/project_info.py b/ra_aid/project_info.py index 5c4371b..837b543 100644 --- a/ra_aid/project_info.py +++ b/ra_aid/project_info.py @@ -129,9 +129,6 @@ def display_project_status(info: ProjectInfo) -> None: status_text = f""" {status} with **{file_count} file(s)** """ - # Add truncation notice if list was truncated - if len(info.files) < info.total_files: - status_text += f"\n[*Note: File listing truncated ({len(info.files)} of {info.total_files} shown)*]" # Create and display panel console = Console()