| Index: tools/chrome_remote_control/chrome_remote_control/multi_page_benchmark.py
|
| diff --git a/tools/chrome_remote_control/chrome_remote_control/multi_page_benchmark.py b/tools/chrome_remote_control/chrome_remote_control/multi_page_benchmark.py
|
| index 8d5d74ff38fe08e1459bfb0468e5aca51b88e9af..42672628dffc249d5d8dd6a177060bc3d7be22d3 100644
|
| --- a/tools/chrome_remote_control/chrome_remote_control/multi_page_benchmark.py
|
| +++ b/tools/chrome_remote_control/chrome_remote_control/multi_page_benchmark.py
|
| @@ -5,14 +5,12 @@ import csv
|
| import logging
|
| import os
|
| import sys
|
| -import traceback
|
|
|
| from chrome_remote_control import browser_finder
|
| from chrome_remote_control import browser_options
|
| from chrome_remote_control import page_runner
|
| from chrome_remote_control import page_set
|
| from chrome_remote_control import page_test
|
| -from chrome_remote_control import util
|
|
|
| class MeasurementFailure(page_test.Failure):
|
| """Exception that can be thrown from MeasurePage to indicate an undesired but
|
| @@ -127,7 +125,7 @@ def Main(benchmark, args=None):
|
|
|
| if len(args) != 1:
|
| parser.print_usage()
|
| - import page_sets
|
| + import page_sets # pylint: disable=F0401
|
| sys.stderr.write('Available pagesets:\n%s\n\n' % ',\n'.join(
|
| [os.path.relpath(f) for f in page_sets.GetAllPageSetFilenames()]))
|
| sys.exit(1)
|
|
|