mirror of
https://github.com/DeaDvey/mathgenerator.git
synced 2025-11-28 14:35:23 +01:00
pep8 fixes
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
from .__init__ import *
|
||||
from .__init__ import *
|
||||
|
||||
|
||||
def commonFactorsFunc(maxVal=100):
|
||||
@@ -18,7 +18,7 @@ def commonFactorsFunc(maxVal=100):
|
||||
if (y % i == 0):
|
||||
count = count + 1
|
||||
arr.append(i)
|
||||
|
||||
|
||||
problem = f"Common Factors of {a} and {b} = "
|
||||
solution = arr
|
||||
return problem, solution
|
||||
|
||||
Reference in New Issue
Block a user