some more lint fixes

This commit is contained in:
lukew3
2020-10-19 14:00:28 -04:00
parent 91358f5b1b
commit 233f8bf180
5 changed files with 15 additions and 15 deletions

View File

@@ -2,9 +2,9 @@ from .__init__ import *
def absoluteDifferenceFunc(maxA=100, maxB=100):
a = random.randint(-1*maxA, maxA)
b = random.randint(-1*maxB, maxB)
absDiff = abs(a-b)
a = random.randint(-1 * maxA, maxA)
b = random.randint(-1 * maxB, maxB)
absDiff = abs(a - b)
problem = "Absolute difference between numbers " + \
str(a) + " and " + str(b) + " = "