From f9568cf6e760969df1fd8e46cb005c7b983c3493 Mon Sep 17 00:00:00 2001 From: Haoyu Zhang Date: Wed, 25 Sep 2024 21:51:36 -0600 Subject: [PATCH] [doc]: Add missing docstring --- libs/ccc/coef/impl.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libs/ccc/coef/impl.py b/libs/ccc/coef/impl.py index ebb70b16..18532990 100644 --- a/libs/ccc/coef/impl.py +++ b/libs/ccc/coef/impl.py @@ -523,6 +523,8 @@ def get_n_workers(n_jobs: int | None) -> int: Args: n_jobs: value specified by the main ccc function. + Returns: + The number of workers to use for parallel processing """ n_cpu_cores = os.cpu_count() if n_cpu_cores is None: