From 7c4f01f767da89b97a520e2041218b6da6b91ae9 Mon Sep 17 00:00:00 2001 From: Quinten Steenhuis Date: Wed, 17 Jan 2024 15:36:15 -0500 Subject: [PATCH] Fix formatting with Black --- docassemble/ALToolbox/al_income.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docassemble/ALToolbox/al_income.py b/docassemble/ALToolbox/al_income.py index 4703508..d546252 100644 --- a/docassemble/ALToolbox/al_income.py +++ b/docassemble/ALToolbox/al_income.py @@ -598,7 +598,7 @@ def total(self, times_per_year: float = 1) -> Decimal: return Decimal(0) else: return super(ALAsset, self).total(times_per_year=times_per_year) - + def equity(self, loan_attribute="balance") -> Decimal: """Returns the total equity in the asset (e.g., market value minus balance)""" if getattr(self, loan_attribute, None) is None: @@ -656,7 +656,7 @@ def balance( ): result += _currency_float_to_decimal(asset.balance) return result - + def equity( self, source: Optional[SourceType] = None,