linter fix

This commit is contained in:
lukew3
2020-11-20 19:46:24 -05:00
parent 7543e48f6e
commit 77b5d13bc1

View File

@@ -6,7 +6,7 @@ def complexDivisionFunc(maxRes=99, maxDivid=99):
b = random.randint(0, min(maxRes, maxDivid))
c = a / b
c = round(c, 2)
problem = str(a) + "/" + str(b) + "="
solution = str(c)
return problem, solution