Files
chromium_depot_tools/yapf
Thiago Perrotta 36bf3a82fb yapf: remove unused re import
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>
2022-07-22 18:29:27 +00:00

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