| #!/usr/bin/env vpython3 |
| # Copyright 2022 The Chromium OS Authors. All rights reserved. |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| |
| # [VPYTHON:BEGIN] |
| # python_version: "3.8" |
| # |
| # wheel: < |
| # name: "infra/python/wheels/yapf-py3" |
| # version: "version:0.32.0" |
| # > |
| # wheel: < |
| # name: "infra/python/wheels/futures-py2_py3" |
| # version: "version:3.1.1" |
| # > |
| # [VPYTHON:END] |
| |
| """Wrapper for stable version of yapf that we control.""" |
| |
| import sys |
| |
| from yapf import run_main |
| |
| |
| if __name__ == '__main__': |
| sys.exit(run_main()) |