From 1d67da7ed0fbd0c7113ba268595ae2c589b24a43 Mon Sep 17 00:00:00 2001 From: Andy Lee Date: Wed, 11 Dec 2024 12:05:23 -0800 Subject: [PATCH] chore: remove TODO --- sky/utils/subprocess_utils.py | 1 - 1 file changed, 1 deletion(-) diff --git a/sky/utils/subprocess_utils.py b/sky/utils/subprocess_utils.py index a83d9fa8262..e38ed3ec87a 100644 --- a/sky/utils/subprocess_utils.py +++ b/sky/utils/subprocess_utils.py @@ -96,7 +96,6 @@ def get_parallel_threads(cloud_str: Optional[str] = None) -> int: return max(4, cpu_count - 1) * _get_thread_multiplier(cloud_str) -# TODO(andyl): Why this function returns a list of results? Why not yielding? def run_in_parallel(func: Callable, args: Iterable[Any], num_threads: Optional[int] = None) -> List[Any]: