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

Unified Diff: tools/telemetry/telemetry/internal/platform/posix_platform_backend.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/platform/posix_platform_backend.py
diff --git a/tools/telemetry/telemetry/internal/platform/posix_platform_backend.py b/tools/telemetry/telemetry/internal/platform/posix_platform_backend.py
index 11da693dba7aeaf55afb149776f118e22868cbc7..d20dd1fceac2a512f2736e6bbffbfad3611a9b24 100644
--- a/tools/telemetry/telemetry/internal/platform/posix_platform_backend.py
+++ b/tools/telemetry/telemetry/internal/platform/posix_platform_backend.py
@@ -35,7 +35,7 @@ def _CanRunElevatedWithSudo(path):
class PosixPlatformBackend(desktop_platform_backend.DesktopPlatformBackend):
# This is an abstract class. It is OK to have abstract methods.
- # pylint: disable=W0223
+ # pylint: disable=abstract-method
def RunCommand(self, args):
return subprocess.Popen(args, stdout=subprocess.PIPE).communicate()[0]

Powered by Google App Engine
This is Rietveld 408576698