linter fix

This commit is contained in:
lukew3
2020-11-21 11:18:47 -05:00
parent 6ee6a69cf0
commit 78429be96f
3 changed files with 3 additions and 0 deletions

View File

@@ -2,6 +2,7 @@ from .__init__ import *
import fractions
def intersectionOfTwoLinesFunc(minM=-10,
maxM=10,
minB=-10,

View File

@@ -2,6 +2,7 @@ from .__init__ import *
import math
def quadraticEquation(maxVal=100):
a = random.randint(1, maxVal)
c = random.randint(1, maxVal)

View File

@@ -2,6 +2,7 @@ from .__init__ import *
import math
def nthFibonacciNumberFunc(maxN=100):
golden_ratio = (1 + math.sqrt(5)) / 2
n = random.randint(1, maxN)