Skip to content

Commit

Permalink
Fixing linter problems
Browse files Browse the repository at this point in the history
  • Loading branch information
phillybroadbent committed Nov 16, 2023
1 parent b14743d commit c469e32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lowfat/models/claimant.py
Expand Up @@ -455,7 +455,7 @@ def claimantship_committed(self):
status__in=['A', 'M', 'F']
)])

return sum([fund.budget_approved for fund in this_claimant_funds]) - (spent_from_committed_final + spent_from_committed_other)
return sum([fund.budget_approved for fund in this_claimant_funds]) - (spent_from_committed_final + spent_from_committed_other)

def claimantship_spent(self):
"""Return the amount already spent from the claimantship grant."""
Expand All @@ -465,4 +465,4 @@ def claimantship_spent(self):
grant_heading="F"
)

return sum([expense.amount_authorized_for_payment for expense in this_claimant_expenses])
return sum([expense.amount_authorized_for_payment for expense in this_claimant_expenses])

0 comments on commit c469e32

Please sign in to comment.