[PATCH 01/10] btt_plot.py: Use sum() instead of open-coding it to compute list average

Vincent Legoll <[email protected]>
Newsgroups org.kernel.vger.linux-btrace
Message-ID <[email protected]>
Signed-off-by: Vincent Legoll <[email protected]>
---
 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
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.