diff --git a/changelog_entry.yaml b/changelog_entry.yaml index e69de29bb..2407200e5 100644 --- a/changelog_entry.yaml +++ b/changelog_entry.yaml @@ -0,0 +1,4 @@ +- bump: patch + changes: + added: + - Add savings, net_financial_wealth, gross_financial_wealth, and shareholding to total_wealth calculation \ No newline at end of file diff --git a/policyengine_uk/variables/household/wealth/total_wealth.py b/policyengine_uk/variables/household/wealth/total_wealth.py index 641e344ca..93eac33c6 100644 --- a/policyengine_uk/variables/household/wealth/total_wealth.py +++ b/policyengine_uk/variables/household/wealth/total_wealth.py @@ -8,4 +8,8 @@ class total_wealth(Variable): value_type = float unit = GBP - adds = ["property_wealth", "corporate_wealth"] + adds = [ + "property_wealth", + "corporate_wealth", + "savings", + ]