Lint fixes

This commit is contained in:
lukew3
2020-12-17 22:22:18 -05:00
parent 42dd6c368c
commit 05f8bb712a
4 changed files with 4 additions and 4 deletions

View File

@@ -6,7 +6,7 @@ def powerOfPowersFunc(maxBase=50, maxPower=10, style='raw'):
power1 = random.randint(1, maxPower)
power2 = random.randint(1, maxPower)
step = power1 * power2
if style == 'latex':
problem = "Simplify \\(" + str(base) + "^{" + str(power1) + "^{" + str(power2) + "}}\\)"
solution = f"\\({base}^{{{step}}}\\)"