archive
/
catfish
Archived
1
Fork 0

Remove unused function

This commit is contained in:
Jake Howard 2018-12-23 14:47:46 +00:00
parent 5fee87b3a2
commit e1c4903281
Signed by: jake
GPG Key ID: 57AFB45680EDD477
1 changed files with 0 additions and 5 deletions

View File

@ -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)