mirror of
https://chromium.googlesource.com/chromium/tools/depot_tools.git
synced 2026-01-11 18:51:29 +00:00
Bug: 1074167 Change-Id: I9f0c1c8a1fa76d6bf2899000fd0b3665f7bf0994 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/2174818 Reviewed-by: Edward Lesmes <ehmaldonado@chromium.org> Commit-Queue: Anthony Polito <apolito@google.com>
22 lines
366 B
Plaintext
Executable File
22 lines
366 B
Plaintext
Executable File
#!/usr/bin/env vpython
|
|
|
|
# [VPYTHON:BEGIN]
|
|
# wheel: <
|
|
# name: "infra/python/wheels/yapf-py2_py3"
|
|
# version: "version:0.27.0"
|
|
# >
|
|
# wheel: <
|
|
# name: "infra/python/wheels/futures-py2_py3"
|
|
# version: "version:3.1.1"
|
|
# >
|
|
# [VPYTHON:END]
|
|
|
|
# -*- coding: utf-8 -*-
|
|
import re
|
|
import sys
|
|
|
|
from yapf import run_main
|
|
|
|
if __name__ == '__main__':
|
|
sys.exit(run_main())
|