mirror of
https://chromium.googlesource.com/chromium/tools/depot_tools.git
synced 2026-01-11 18:51:29 +00:00
0.24 has just been uploaded see bug. Bug: 890349 Change-Id: Ice1e0c54d3fb60c0da5fde14aafae20c3ac449ce Reviewed-on: https://chromium-review.googlesource.com/c/1261756 Reviewed-by: Robbie Iannucci <iannucci@chromium.org> Commit-Queue: Aiden Benner <abenner@google.com>
18 lines
274 B
Plaintext
Executable File
18 lines
274 B
Plaintext
Executable File
#!/usr/bin/env vpython
|
|
|
|
# [VPYTHON:BEGIN]
|
|
# wheel: <
|
|
# name: "infra/python/wheels/yapf-py2_py3"
|
|
# version: "version:0.24.0"
|
|
# >
|
|
# [VPYTHON:END]
|
|
|
|
# -*- coding: utf-8 -*-
|
|
import re
|
|
import sys
|
|
|
|
from yapf import run_main
|
|
|
|
if __name__ == '__main__':
|
|
sys.exit(run_main())
|