cleanup: removed unnecessary whitespace in measure_time.py

This commit is contained in:
Allan Jeremy 2022-06-16 18:16:49 +03:00
parent a82cfc869d
commit 4d0d323477

View file

@ -2,13 +2,11 @@ import os, sys, time, numpy
try:
import scipy
from scipy import mean, stats
except ModuleNotFoundError:
print("Warning: scipy package is not installed, confidence values will not be available")
stats = None
duration_list = []
DEFAULT_CYCLES_TO_RUN = 100