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

Unified Diff: tools/telemetry/telemetry/decorators_unittest.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/decorators_unittest.py
diff --git a/tools/telemetry/telemetry/decorators_unittest.py b/tools/telemetry/telemetry/decorators_unittest.py
index 84ca05050276d0d47db832f2bdb21f28127b5f75..fbb42b6b270bc9866e3d7922ca12c773a34163d6 100644
--- a/tools/telemetry/telemetry/decorators_unittest.py
+++ b/tools/telemetry/telemetry/decorators_unittest.py
@@ -25,11 +25,11 @@ class FakePossibleBrowser(object):
class FakeTest(object):
def SetEnabledStrings(self, enabled_strings):
- # pylint: disable=W0201
+ # pylint: disable=attribute-defined-outside-init
self._enabled_strings = enabled_strings
def SetDisabledStrings(self, disabled_strings):
- # pylint: disable=W0201
+ # pylint: disable=attribute-defined-outside-init
self._disabled_strings = disabled_strings

Powered by Google App Engine
This is Rietveld 408576698