Remove unused function
This commit is contained in:
parent
5fee87b3a2
commit
e1c4903281
1 changed files with 0 additions and 5 deletions
|
@ -39,11 +39,6 @@ def is_process_running(pid: int) -> bool:
|
|||
return False
|
||||
|
||||
|
||||
def wait_for_process_start(pid: int):
|
||||
while not is_process_running(pid):
|
||||
time.sleep(0.1)
|
||||
|
||||
|
||||
def wait_for_process_terminate(pid: int):
|
||||
while is_process_running(pid):
|
||||
time.sleep(0.1)
|
||||
|
|
Reference in a new issue