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

Unified Diff: tools/telemetry/telemetry/timeline/counter.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/timeline/counter.py
diff --git a/tools/telemetry/telemetry/timeline/counter.py b/tools/telemetry/telemetry/timeline/counter.py
index 2e62508e81d19e667999cfa4322c4bc385b93e2c..07698b10b54fb56f7d4338931fe0f4c07e5c760e 100644
--- a/tools/telemetry/telemetry/timeline/counter.py
+++ b/tools/telemetry/telemetry/timeline/counter.py
@@ -52,7 +52,7 @@ class Counter(event_container.TimelineEventContainer):
def __init__(self, parent, category, name):
super(Counter, self).__init__(name, parent)
self.category = category
- self.full_name = category + '.' + name
+ self.full_name = category + '.' + name
self.samples = []
self.timestamps = []
self.series_names = []
@@ -71,7 +71,7 @@ class Counter(event_container.TimelineEventContainer):
# creating a ton of garbage for rejected samples.
test_sample = CounterSample(self, 0)
for i in xrange(len(self.timestamps)):
- test_sample._sample_index = i
+ test_sample._sample_index = i # pylint: disable=protected-access
if event_predicate(test_sample):
yield CounterSample(self, i)

Powered by Google App Engine
This is Rietveld 408576698