From f2a3ef46f75d2196a93d3ed27f4d1fcf22b54fbe Mon Sep 17 00:00:00 2001 From: Luis Lozano Date: Tue, 15 Dec 2015 13:49:30 -0800 Subject: Run pyformat on all the toolchain-utils files. This gets rid of a lot of lint issues. Ran by doing this: for f in *.py; do echo -n "$f " ; if [ -x $f ]; then pyformat -i --remove_trailing_comma --yapf --force_quote_type=double $f ; else pyformat -i --remove_shebang --remove_trailing_comma --yapf --force_quote_type=double $f ; fi ; done BUG=chromium:567921 TEST=Ran simple crosperf run. Change-Id: I59778835fdaa5f706d2e1765924389f9e97433d1 Reviewed-on: https://chrome-internal-review.googlesource.com/242031 Reviewed-by: Luis Lozano Commit-Queue: Luis Lozano Tested-by: Luis Lozano Reviewed-by: Yunlian Jiang --- bestflags/pipeline_process_test.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'bestflags/pipeline_process_test.py') diff --git a/bestflags/pipeline_process_test.py b/bestflags/pipeline_process_test.py index 77d72db5..b9d84067 100644 --- a/bestflags/pipeline_process_test.py +++ b/bestflags/pipeline_process_test.py @@ -1,7 +1,6 @@ # Copyright (c) 2013 The Chromium OS Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. - """Pipeline Process unittest. Part of the Chrome build flags optimization. @@ -62,9 +61,8 @@ class PipelineProcessTest(unittest.TestCase): inp = manager.Queue() output = manager.Queue() - process = pipeline_process.PipelineProcess(2, 'testing', {}, TEST_STAGE, - inp, MockHelper, MockWorker, - output) + process = pipeline_process.PipelineProcess( + 2, 'testing', {}, TEST_STAGE, inp, MockHelper, MockWorker, output) process.start() inp.put(MockTask(TEST_STAGE, 1)) -- cgit v1.2.3