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)