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

Unified Diff: tools/auto_bisect/bisect_utils.py

Issue 681103002: Update style according to advice from pylint. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months 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/auto_bisect/bisect_utils.py
diff --git a/tools/auto_bisect/bisect_utils.py b/tools/auto_bisect/bisect_utils.py
index 38f56f15bbcc6a2d7e05b7916e4f6852d9d09de7..8944f06c4ade46ac7095c5ec83af330f6485a2ac 100644
--- a/tools/auto_bisect/bisect_utils.py
+++ b/tools/auto_bisect/bisect_utils.py
@@ -258,7 +258,7 @@ def LoadExtraSrc(path_to_file):
def IsTelemetryCommand(command):
"""Attempts to discern whether or not a given command is running telemetry."""
- return ('tools/perf/run_' in command or 'tools\\perf\\run_' in command)
+ return 'tools/perf/run_' in command or 'tools\\perf\\run_' in command
def _CreateAndChangeToSourceDirectory(working_directory):

Powered by Google App Engine
This is Rietveld 408576698