From 7139a8aece31009f6f45fd43e928859464252951 Mon Sep 17 00:00:00 2001 From: Luke Weiler Date: Wed, 21 Oct 2020 14:13:49 -0400 Subject: [PATCH] Update compoundInterestFunc.py --- mathgenerator/funcs/compoundInterestFunc.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/mathgenerator/funcs/compoundInterestFunc.py b/mathgenerator/funcs/compoundInterestFunc.py index 9c9d290..d357bed 100644 --- a/mathgenerator/funcs/compoundInterestFunc.py +++ b/mathgenerator/funcs/compoundInterestFunc.py @@ -2,15 +2,12 @@ from .__init__ import * from ..__init__ import Generator -<<<<<<< HEAD -def compoundInterestFunc(maxPrinciple = 10000, maxRate = 10, maxTime = 10, maxPeriod = 10): -======= + def compoundInterestFunc(maxPrinciple=10000, maxRate=10, maxTime=10, maxPeriod=10): ->>>>>>> cb0cfb4b81966d8bccb88d30dfce099e05c8b4f4 p = random.randint(100, maxPrinciple) r = random.randint(1, maxRate) t = random.randint(1, maxTime)