mirror of
				https://github.com/zulip/zulip.git
				synced 2025-10-30 19:43:47 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			183 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			183 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env python3
 | |
| 
 | |
| import subprocess
 | |
| 
 | |
| subprocess.check_call(
 | |
|     ["/usr/local/bin/corepack", "pnpm", "run", "format"],
 | |
|     cwd="starlight_help",
 | |
|     stdout=subprocess.DEVNULL,
 | |
| )
 |