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

Unified Diff: tools/telemetry/telemetry/internal/forwarders/do_nothing_forwarder.py

Issue 1458083003: [Telemetry + tools/perf] Modify the pylint disable message to use symbolic name (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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/internal/forwarders/do_nothing_forwarder.py
diff --git a/tools/telemetry/telemetry/internal/forwarders/do_nothing_forwarder.py b/tools/telemetry/telemetry/internal/forwarders/do_nothing_forwarder.py
index 6e8f194d199fa1b1ac0bd65d34ce55216342713d..1e08ff7a29bb8fd43bb991d525b8fa40a2f5018b 100644
--- a/tools/telemetry/telemetry/internal/forwarders/do_nothing_forwarder.py
+++ b/tools/telemetry/telemetry/internal/forwarders/do_nothing_forwarder.py
@@ -47,7 +47,8 @@ class DoNothingForwarder(forwarders.Forwarder):
def _CheckPortPairs(self):
# namedtuple._asdict() is a public method. The method starts with an
- # underscore to avoid conflicts with attribute names. pylint: disable=W0212
+ # underscore to avoid conflicts with attribute names.
+ # pylint: disable=protected-access
for protocol, port_pair in self._port_pairs._asdict().items():
if not port_pair:
continue

Powered by Google App Engine
This is Rietveld 408576698