From 77b5d13bc1d96121b43ecdbdfc949e26cfccd6cf Mon Sep 17 00:00:00 2001 From: lukew3 Date: Fri, 20 Nov 2020 19:46:24 -0500 Subject: [PATCH] linter fix --- mathgenerator/funcs/complex_division.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mathgenerator/funcs/complex_division.py b/mathgenerator/funcs/complex_division.py index 195a520..584a6af 100644 --- a/mathgenerator/funcs/complex_division.py +++ b/mathgenerator/funcs/complex_division.py @@ -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