lint fixes

This commit is contained in:
lukew3
2021-02-16 11:27:36 -05:00
parent 6d23628aa0
commit a14a0ad31a
21 changed files with 48 additions and 25 deletions

View File

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