get rid of pointless truncation message

This commit is contained in:
AI Christianson 2025-02-08 12:44:55 -05:00
parent 5861f3a2bf
commit c27a75bc26
1 changed files with 0 additions and 3 deletions

View File

@ -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()