Files
chromium_depot_tools/yapf
Josip Sokcevic d73d069a76 Run yapf with vpython3
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>
2021-04-13 15:43:18 +00:00

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