From 1f3bd234016bb692984c02e6e3140014e5578050 Mon Sep 17 00:00:00 2001 From: chenzheng06 Date: Tue, 25 Apr 2017 14:00:47 -0400 Subject: [PATCH] fix-income-statement-form-hist, quote signs --- bpfin/financials/income_statement_form_hist.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bpfin/financials/income_statement_form_hist.py b/bpfin/financials/income_statement_form_hist.py index 706b8ba..65ba995 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] -- GitLab