From 3dfc4b8e8290cb91dcd77f0ffa4d4a305fcbe384 Mon Sep 17 00:00:00 2001 From: Andrea Alfonsi - NuCube Date: Tue, 10 Oct 2023 22:05:01 -0600 Subject: [PATCH] Apply suggestions from code review --- src/Amortization.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/Amortization.py b/src/Amortization.py index 3b8d3e9af..53bfa2b8d 100644 --- a/src/Amortization.py +++ b/src/Amortization.py @@ -44,9 +44,6 @@ def amortize(scheme, plan, startValue, componentLife): pcts = MACRS.get(ys, None) if pcts is None: raise IOError('Provided MACRS "{}" is not allowed.'.format(ys)) - print(pcts) - print(startValue) - print(alpha) alpha[1:len(pcts)+1] = pcts * startValue elif lscheme == 'custom': alpha[1:len(plan)+1] = np.asarray(plan)/100. * startValue