Signed-off-by: Vincent Legoll <vincent.legoll@xxxxxxxxx> --- btt/btt_plot.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/btt/btt_plot.py b/btt/btt_plot.py index 76fcca8..9c6f207 100755 --- a/btt/btt_plot.py +++ b/btt/btt_plot.py @@ -125,10 +125,7 @@ def get_data(files): def _avg(vals): """Computes average for array of values passed""" - total = 0.0 - for val in vals: - total += val - return total / len(vals) + return sum(vals) / len(vals) #------------------------------------------------------ if len(xs) < 1000: -- 2.20.1