Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(223)

Unified Diff: tools/telemetry/telemetry/value/histogram_util.py

Issue 739623005: [Telemetry] Resolve errors due to new pylint checker. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ready to land Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tools/telemetry/telemetry/value/histogram_util.py
diff --git a/tools/telemetry/telemetry/value/histogram_util.py b/tools/telemetry/telemetry/value/histogram_util.py
index 69656b4ac91cb149e30467201941c8fda24fdb91..bb6ff363d22943b0c8fde15340ceca46a431ae4c 100644
--- a/tools/telemetry/telemetry/value/histogram_util.py
+++ b/tools/telemetry/telemetry/value/histogram_util.py
@@ -79,7 +79,7 @@ def AddHistograms(histogram_jsons):
buckets = [{'low': key[0], 'high': key[1], 'count': value}
for key, value in buckets.iteritems()]
- buckets.sort(key = lambda h : h['low'])
+ buckets.sort(key=lambda h: h['low'])
result_histogram = {}
result_histogram['buckets'] = buckets
« no previous file with comments | « tools/telemetry/telemetry/util/trace.py ('k') | tools/telemetry/telemetry/value/list_of_scalar_values_unittest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698