This commit is contained in:
NikolajDanger
2022-09-19 15:14:35 +02:00
parent 920289acbe
commit 0ae167edd6

View File

@ -48,7 +48,7 @@ def main():
while not all(calibrated):
for i, function in enumerate(tests):
if not calibrated[i]:
wheels = function(arlo, *values)
wheels = function(arlo, *values[i])
fraction = max(wheels)/min(wheels)
if fraction < THRESHOLD:
calibrated[i] = True