Files
chromium_depot_tools/yapf
Anthony Polito 177e70c03e update yapf to 0.27.0
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>
2020-05-01 17:52:11 +00:00

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())