mirror of
https://chromium.googlesource.com/chromium/tools/depot_tools.git
synced 2026-01-11 18:51:29 +00:00
Bug: None Change-Id: I4c161b05ab5c743cf8d6fddbf40af759f186eccc Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/3782487 Reviewed-by: Gavin Mak <gavinmak@google.com> Reviewed-by: Aravind Vasudevan <aravindvasudev@google.com> Commit-Queue: Thiago Perrotta <tperrotta@chromium.org> Auto-Submit: 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.27.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())
|