Advertisement
Guest User

Untitled

a guest
Apr 10th, 2020
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.22 KB | None | 0 0
  1. import sys
  2. import os
  3. from PyQt5.QtCore import QProcess
  4.  
  5. def StartBuilding():
  6.     building_process = QProcess()
  7.     building_process.start('../../Build.bat', ['ubel'])
  8.     return building_process
  9.    
  10. a = StartBuilding()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement