Skip to content
This repository has been archived by the owner on May 14, 2024. It is now read-only.

Commit

Permalink
make last investment row a dividier
Browse files Browse the repository at this point in the history
  • Loading branch information
Comeani committed Mar 4, 2024
1 parent 2f13cd5 commit e3328d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bank/account_logic.py
Original file line number Diff line number Diff line change
Expand Up @@ -817,7 +817,7 @@ def _build_usage_table(self) -> PrettyTable:
output_table.add_row(["cover usage above", "", ""])
output_table.add_row(["Total Proposal SUs", "", ""])
output_table.add_row(["Total", "SUs Remaining", "% Used"])
output_table.add_row([investment_total, investment_remaining, investment_percentage])
output_table.add_row([investment_total, investment_remaining, investment_percentage], divider=True)

output_table.add_row(['Aggregate Usage', usage_percentage, ""])
output_table.add_row(['(no investments)', "", ""])
Expand Down

0 comments on commit e3328d9

Please sign in to comment.