mirror of
https://github.com/DeaDvey/mathgenerator.git
synced 2025-11-28 14:35:23 +01:00
linter fix
This commit is contained in:
@@ -6,7 +6,7 @@ def complexDivisionFunc(maxRes=99, maxDivid=99):
|
|||||||
b = random.randint(0, min(maxRes, maxDivid))
|
b = random.randint(0, min(maxRes, maxDivid))
|
||||||
c = a / b
|
c = a / b
|
||||||
c = round(c, 2)
|
c = round(c, 2)
|
||||||
|
|
||||||
problem = str(a) + "/" + str(b) + "="
|
problem = str(a) + "/" + str(b) + "="
|
||||||
solution = str(c)
|
solution = str(c)
|
||||||
return problem, solution
|
return problem, solution
|
||||||
|
|||||||
Reference in New Issue
Block a user