mirror of
https://chromium.googlesource.com/chromium/tools/depot_tools.git
synced 2026-01-11 10:41:31 +00:00
R=sokcevic@google.com Bug: 1306598 Change-Id: Idd5d4216dad62bf1c2d28d27e415046d6b1a311a Follow-up-of: https://crrev/c/4284800 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/4289682 Reviewed-by: Josip Sokcevic <sokcevic@chromium.org> Commit-Queue: Thiago Perrotta <tperrotta@chromium.org>
21 lines
357 B
Plaintext
Executable File
21 lines
357 B
Plaintext
Executable File
#!/usr/bin/env vpython3
|
|
|
|
# [VPYTHON:BEGIN]
|
|
# wheel: <
|
|
# name: "infra/python/wheels/yapf-py2_py3"
|
|
# version: "version:0.31.0"
|
|
# >
|
|
# wheel: <
|
|
# name: "infra/python/wheels/futures-py2_py3"
|
|
# version: "version:3.1.1"
|
|
# >
|
|
# [VPYTHON:END]
|
|
|
|
# -*- coding: utf-8 -*-
|
|
import sys
|
|
|
|
from yapf import run_main
|
|
|
|
if __name__ == '__main__':
|
|
sys.exit(run_main())
|