You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			22 lines
		
	
	
		
			366 B
		
	
	
	
		
			Plaintext
		
	
			
		
		
	
	
			22 lines
		
	
	
		
			366 B
		
	
	
	
		
			Plaintext
		
	
#!/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())
 |