From bc80777cce01934feedc69f87685d6264fdf229b Mon Sep 17 00:00:00 2001 From: brownolivia34 Date: Mon, 15 Mar 2021 10:18:20 +0500 Subject: [PATCH 1/2] bug fixing --- build/lib/finmodels/lbo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/lib/finmodels/lbo.py b/build/lib/finmodels/lbo.py index c022584..6548a2a 100644 --- a/build/lib/finmodels/lbo.py +++ b/build/lib/finmodels/lbo.py @@ -23,7 +23,7 @@ def calculate_free_cash_flows(self): Returns: - list: Projected free cash flows for each year. """ - # Simplified example: Assuming constant free cash flows for demonstration + average_free_cash_flow = 50 free_cash_flows = [average_free_cash_flow] * self.years return free_cash_flows From 83f093e0c0037a2971635a114b5d70c14b9314d6 Mon Sep 17 00:00:00 2001 From: brownolivia34 Date: Thu, 15 Apr 2021 10:18:20 +0500 Subject: [PATCH 2/2] Enhancing the code --- build/lib/finmodels/lbo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/lib/finmodels/lbo.py b/build/lib/finmodels/lbo.py index 6548a2a..c022584 100644 --- a/build/lib/finmodels/lbo.py +++ b/build/lib/finmodels/lbo.py @@ -23,7 +23,7 @@ def calculate_free_cash_flows(self): Returns: - list: Projected free cash flows for each year. """ - + # Simplified example: Assuming constant free cash flows for demonstration average_free_cash_flow = 50 free_cash_flows = [average_free_cash_flow] * self.years return free_cash_flows