From e1c4903281537a4d360893ea4ddb5fdea2978a56 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Sun, 23 Dec 2018 14:47:46 +0000 Subject: [PATCH] Remove unused function --- catfish/utils/processes.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/catfish/utils/processes.py b/catfish/utils/processes.py index 7eea95f..8e7124a 100644 --- a/catfish/utils/processes.py +++ b/catfish/utils/processes.py @@ -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)