From 000660a8b6b6f9c2b2f552fc78c1e6f531f54e0c Mon Sep 17 00:00:00 2001 From: selmanozleyen Date: Fri, 26 Jun 2026 23:17:11 +0200 Subject: [PATCH] add items to registry. they can be merged under something else once parallelize is removed --- src/squidpy/_docs.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/squidpy/_docs.py b/src/squidpy/_docs.py index 5721aa0c1..a632906c2 100644 --- a/src/squidpy/_docs.py +++ b/src/squidpy/_docs.py @@ -121,6 +121,12 @@ def decorator2(obj: Any) -> Any: ``NUMBA_NUM_THREADS`` before running the program. backend Parallelization backend to use. See :class:`joblib.Parallel` for available options. +show_progress_bar + Whether to show the progress bar or not.""" +_n_jobs = """\ +n_jobs + Number of parallel jobs to use.""" +_show_progress_bar = """\ show_progress_bar Whether to show the progress bar or not.""" _channels = """\ @@ -411,6 +417,8 @@ def decorator2(obj: Any) -> Any: cat_plotting=_cat_plotting, plotting_returns=_plotting_returns, parallelize=_parallelize, + n_jobs=_n_jobs, + show_progress_bar=_show_progress_bar, channels=_channels, segment_kwargs=_segment_kwargs, ligrec_test_returns=_ligrec_test_returns,