From e8d9d75f8a372b3644e595c242c73c89bf302ee5 Mon Sep 17 00:00:00 2001 From: Comeani Date: Mon, 4 Mar 2024 09:47:52 -0500 Subject: [PATCH] Pull duplicate header items from investment output --- bank/account_logic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bank/account_logic.py b/bank/account_logic.py index 84db750..1a3a300 100644 --- a/bank/account_logic.py +++ b/bank/account_logic.py @@ -810,7 +810,7 @@ def _build_usage_table(self) -> PrettyTable: investment_used = investment_total - investment_remaining investment_percentage = self._calculate_percentage(investment_used, investment_total) - output_table.add_row(["Investment SUs", "SUs Remaining", "% Used"], divider=True) + output_table.add_row(["Investment SUs", "", ""], divider=True) output_table.add_row(["Investment SUs", "", ""]) output_table.add_row(["are applied on", "", ""]) output_table.add_row(["any cluster to", "", ""])