diff --git a/bpfin/financials/income_statement_form_hist.py b/bpfin/financials/income_statement_form_hist.py index 706b8ba82024567e9b79e7dbf04e72c42be8a76a..65ba995d5bca40702883dba1b5d4a53cedaba6f5 100644 --- a/bpfin/financials/income_statement_form_hist.py +++ b/bpfin/financials/income_statement_form_hist.py @@ -13,7 +13,7 @@ def income_statement_character(income_statement_hist): income_statement_hist = {2014:{'revenue': 100000, ... ,'noi':37000}, 2015:{}, 2016:{}} output = {'cagr': 2.45, 'other_utility_percentage': 20.4%, 'non_utility_expense_percentage': 43.5%, ..} Note: cagr == compound annual growht rate - ''' + """ sorted_income_hist_year = sorted(income_statement_hist) start_year = sorted_income_hist_year[0] end_year = sorted_income_hist_year[-1]