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

Unified Diff: tools/telemetry/telemetry/internal/platform/profiler/android_profiling_helper.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/profiler/android_profiling_helper.py
diff --git a/tools/telemetry/telemetry/internal/platform/profiler/android_profiling_helper.py b/tools/telemetry/telemetry/internal/platform/profiler/android_profiling_helper.py
index 9ad2e01170cf4604f51fd3cc42be9316abc31f01..3fddf923c7166d96eb6a5a8d8f91f5eb8d8a9992 100644
--- a/tools/telemetry/telemetry/internal/platform/profiler/android_profiling_helper.py
+++ b/tools/telemetry/telemetry/internal/platform/profiler/android_profiling_helper.py
@@ -17,7 +17,7 @@ from telemetry.core import util
from telemetry import decorators
from telemetry.internal.platform.profiler import android_prebuilt_profiler_helper
-from devil.android import md5sum # pylint: disable=F0401
+from devil.android import md5sum # pylint: disable=import-error
try:
@@ -79,7 +79,7 @@ def _FindMatchingUnstrippedLibraryOnHost(device, lib):
# libraries are compatible.
# TODO(skyostil): Check .note.gnu.build-id instead once we're using
# --build-id=sha1.
- # pylint: disable=W0631
+ # pylint: disable=undefined-loop-variable
if (_ElfSectionMd5Sum(unstripped_host_lib, _TEXT_SECTION) !=
_ElfSectionMd5Sum(stripped_host_lib, _TEXT_SECTION)):
return None

Powered by Google App Engine
This is Rietveld 408576698