From 3fab33bf409e9edca134ddae4f10f27f5cdb6506 Mon Sep 17 00:00:00 2001 From: phillybroadbent Date: Mon, 21 Aug 2023 15:06:09 +0100 Subject: [PATCH] Removed whitespace according to linter --- lowfat/models/claimant.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lowfat/models/claimant.py b/lowfat/models/claimant.py index a9338d8f..30524cee 100644 --- a/lowfat/models/claimant.py +++ b/lowfat/models/claimant.py @@ -466,9 +466,9 @@ def claimantship_spent(self): ) return sum([expense.amount_authorized_for_payment for expense in this_claimant_expenses]) - + def claimantship_total(self): """The total of available, committed, spent and passed funds. To be used for the width of the money bar graph to prevent it spilling onto 2 lines.""" - + return self.claimantship_committed() + self.claimantship_spent() + abs(self.claimantship_available()) + self.claimantship_passed()