added more verbose error output in the cli console

This commit is contained in:
pyro57000
2025-11-14 17:28:12 -06:00
parent 0841f38cb5
commit 8ff38acbf2
2 changed files with 14 additions and 6 deletions

View File

@@ -73,7 +73,6 @@ impl Table {
output.push_str("|\n");
spacer.push_str("|\n");
output.push_str(&spacer);
output.push_str(&spacer);
for data_line in self.data.clone() {
let line_vec: Vec<&str> = data_line.split("|").collect();
for id in 0..self.columns.len() {