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

Unified Diff: scripts/slave/recipe_modules/auto_bisect/api.py

Issue 1044543002: Lint bisect-related modules; obey pylint. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Rebased Created 5 years, 9 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
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/auto_bisect/bisect_results.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/recipe_modules/auto_bisect/api.py
diff --git a/scripts/slave/recipe_modules/auto_bisect/api.py b/scripts/slave/recipe_modules/auto_bisect/api.py
index 1332682552884e89715f40f6d169fc82d9be4387..fad63d77e5dffe3c8702308d2faf1f5d4f46ac65 100644
--- a/scripts/slave/recipe_modules/auto_bisect/api.py
+++ b/scripts/slave/recipe_modules/auto_bisect/api.py
@@ -55,14 +55,14 @@ class AutoBisectApi(recipe_api.RecipeApi):
"""Gets the particular subclass of Revision needed for the test type."""
if test_type == 'perf':
return perf_revision_state.PerfRevisionState
- else: #pragma: no cover
+ else: # pragma: no cover
raise NotImplementedError()
def gsutil_file_exists(self, path):
"""Returns True if a file exists at the given GS path."""
try:
self.m.gsutil(['ls', path])
- except self.m.step.StepFailure: #pragma: no cover
+ except self.m.step.StepFailure: # pragma: no cover
return False
return True
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/auto_bisect/bisect_results.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698