mirror of
https://github.com/DeaDvey/mathgenerator.git
synced 2025-11-28 06:25:23 +01:00
lint fixes
This commit is contained in:
@@ -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) + "="
|
||||
|
||||
Reference in New Issue
Block a user