mirror of
https://chromium.googlesource.com/chromium/tools/depot_tools.git
synced 2026-01-11 18:51:29 +00:00
R=ehmaldonado@chromium.org Bug: 1197346 Change-Id: Ifc56ff316954eaa3c532b212371de57f8884ff97 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/2822446 Reviewed-by: Edward Lesmes <ehmaldonado@chromium.org> Commit-Queue: Josip Sokcevic <sokcevic@google.com>
22 lines
367 B
Plaintext
Executable File
22 lines
367 B
Plaintext
Executable File
#!/usr/bin/env vpython3
|
|
|
|
# [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())
|