fix linter errors

This commit is contained in:
lukew3
2022-11-05 14:16:28 -04:00
parent 4b38f21017
commit 2ea31dccde
2 changed files with 3 additions and 2 deletions

View File

@@ -10,9 +10,9 @@ import scipy
genList = []
SEP = os.sep
class Generator:
def __init__(self, title, id, func, kwargs):
self.title = title
self.id = id

View File

@@ -12,6 +12,7 @@ _PYTHAGOREAN = [(3, 4, 5),
(7, 24, 25)]
def gen_func(unit='m', format='string'):
# Generate first triplet
height, half_width, triangle_height_1 = random.sample(random.choice(_PYTHAGOREAN), 3)