fix: Trim trailing whitespace from printed tables

Co-authored-by: aider (openai/andrew/openrouter/deepseek/deepseek-chat-v3.1) <aider@aider.chat>
This commit is contained in:
Andrew Phillips
2025-09-08 18:52:01 -03:00
parent 2dab5b9a51
commit 8cb7559d5d
4 changed files with 8 additions and 8 deletions

View File

@@ -125,7 +125,7 @@ fn show_item(
]);
}
println!("{}", table);
println!("{}", table.trim_end());
Ok(())
}