aboutsummaryrefslogtreecommitdiff
path: root/binary_search_tool/test/gen_init_list.py
diff options
context:
space:
mode:
Diffstat (limited to 'binary_search_tool/test/gen_init_list.py')
-rwxr-xr-xbinary_search_tool/test/gen_init_list.py20
1 files changed, 10 insertions, 10 deletions
diff --git a/binary_search_tool/test/gen_init_list.py b/binary_search_tool/test/gen_init_list.py
index bc5dd8fe..138e949c 100755
--- a/binary_search_tool/test/gen_init_list.py
+++ b/binary_search_tool/test/gen_init_list.py
@@ -1,12 +1,11 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
-# Copyright 2020 The Chromium OS Authors. All rights reserved.
+# Copyright 2020 The ChromiumOS Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Prints out index for every object file, starting from 0."""
-from __future__ import print_function
import sys
@@ -15,13 +14,14 @@ from binary_search_tool.test import common
def Main():
- ce = command_executer.GetCommandExecuter()
- _, l, _ = ce.RunCommandWOutput(
- 'cat {0} | wc -l'.format(common.OBJECTS_FILE), print_to_console=False)
- for i in range(0, int(l)):
- print(i)
+ ce = command_executer.GetCommandExecuter()
+ _, l, _ = ce.RunCommandWOutput(
+ "cat {0} | wc -l".format(common.OBJECTS_FILE), print_to_console=False
+ )
+ for i in range(0, int(l)):
+ print(i)
-if __name__ == '__main__':
- Main()
- sys.exit(0)
+if __name__ == "__main__":
+ Main()
+ sys.exit(0)