lint fixes

This commit is contained in:
lukew3
2020-12-17 21:03:50 -05:00
parent e4fe60a4c9
commit 28e212f969
5 changed files with 6 additions and 6 deletions

View File

@@ -10,7 +10,7 @@ def multiplicationFunc(maxRes=99, maxMulti=99, style='raw'):
c = a * b
if style == 'latex':
problem = "\\(" + str(a) + "\cdot" + str(b) + "=\\)"
problem = "\\(" + str(a) + "\\cdot" + str(b) + "=\\)"
solution = "\\(" + str(c) + "\\)"
else:
problem = str(a) + "*" + str(b) + "="