From a8a053e989d7551ad843f11100b5b460894eed80 Mon Sep 17 00:00:00 2001 From: Dheepak Krishnamurthy Date: Sat, 10 Oct 2020 21:36:49 -0600 Subject: [PATCH] Autoformat code --- src/app.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/app.rs b/src/app.rs index 4454675..ebec19a 100644 --- a/src/app.rs +++ b/src/app.rs @@ -801,7 +801,9 @@ impl TTApp { self.task_report_table.generate_table(alltasks); - return self.task_report_table.simplify_table(); + let (tasks, headers, widths) = self.task_report_table.simplify_table(); + + (tasks, headers, widths) } pub fn update(&mut self) {