diff --git a/bpfin/financials/borrower_schedule.py b/bpfin/financials/borrower_schedule.py index a9b59ac5023b77151859c7d3a074bc9bf193c099..b5cd628ba5b998fd5a45593d1b9878bdab26a9aa 100644 --- a/bpfin/financials/borrower_schedule.py +++ b/bpfin/financials/borrower_schedule.py @@ -18,9 +18,9 @@ def packaging_data(analysis_date, energy_expenses, loan_input, savings_input): if year in energy_expenses: data_storage['energy_expenses'] = energy_expenses[year] if year in loan_input: - data_storage['loan_input'] = loan_input[year] + data_storage['total_loan'] = loan_input[year] if year in savings_input: - data_storage['savings_input'] = savings_input[year] + data_storage['net_savings'] = savings_input[year] analysis_years[year] = data_storage return analysis_years