diff --git a/src/squidpy/_docs.py b/src/squidpy/_docs.py index 072131275..3915f658c 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 = """\ @@ -420,6 +426,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,