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

Unified Diff: build/android/bb_run_sharded_steps.py

Issue 132463007: Enable presubmit pylint in build/android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 11 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: build/android/bb_run_sharded_steps.py
diff --git a/build/android/bb_run_sharded_steps.py b/build/android/bb_run_sharded_steps.py
index 6124819cb5c4bea3d68e3e6fb0417b2abb0b881a..9862343e2e78f546ab57b43006b37edc533de89b 100755
--- a/build/android/bb_run_sharded_steps.py
+++ b/build/android/bb_run_sharded_steps.py
@@ -10,7 +10,6 @@ TODO(bulach): remove me once all other repositories reference
"""
import optparse
-import os
import sys
from pylib import cmd_helper
@@ -27,7 +26,7 @@ def main(argv):
parser.add_option('-p', '--print_results',
help='Only prints the results for the previously '
'executed step, do not run it again.')
- options, urls = parser.parse_args(argv)
+ options, _args = parser.parse_args(argv)
if options.print_results:
return cmd_helper.RunCmd(['build/android/test_runner.py', 'perf',
'--print-step', options.print_results])

Powered by Google App Engine
This is Rietveld 408576698