From 94d677656b5ca6510820ae8317c25478758727a6 Mon Sep 17 00:00:00 2001 From: Nitsujed Date: Wed, 21 Oct 2020 11:53:33 -0400 Subject: [PATCH] Lint issue... --- mathgenerator/funcs/quotient_of_power_same_base.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mathgenerator/funcs/quotient_of_power_same_base.py b/mathgenerator/funcs/quotient_of_power_same_base.py index 01c6dd0..4b74a7f 100644 --- a/mathgenerator/funcs/quotient_of_power_same_base.py +++ b/mathgenerator/funcs/quotient_of_power_same_base.py @@ -13,9 +13,9 @@ def quotientOfPowerSameBaseFunc(maxBase=50, maxPower=10): power1=power1, power2=power2, step=step) - solution = str(base**step) + solution = str(base ** step) return problem, solution quotient_of_power_same_base = Generator("Quotient of Powers with Same Base", 82, - "6^4 / 6^2 = 6^(4-2) = 6^2", "36", quotientOfPowerSameBaseFunc()) + "6^4 / 6^2 = 6^(4-2) = 6^2", "36", quotientOfPowerSameBaseFunc())