Skip to content

Commit dc8e297

Browse files
committed
remove n_jobs from xenium cli
1 parent 7b73d33 commit dc8e297

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

src/spatialdata_io/__main__.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -480,7 +480,6 @@ def visium_hd_wrapper(
480480
default=True,
481481
help="Whether to read cells annotations in the AnnData table. [default: True]",
482482
)
483-
@click.option("--n-jobs", type=int, default=1, help="Number of jobs. [default: 1]")
484483
def xenium_wrapper(
485484
input: str,
486485
output: str,
@@ -495,7 +494,6 @@ def xenium_wrapper(
495494
morphology_focus: bool = True,
496495
aligned_images: bool = True,
497496
cells_table: bool = True,
498-
n_jobs: int = 1,
499497
) -> None:
500498
"""Xenium conversion to SpatialData."""
501499
sdata = xenium( # type: ignore[name-defined] # noqa: F821
@@ -510,7 +508,6 @@ def xenium_wrapper(
510508
morphology_focus=morphology_focus,
511509
aligned_images=aligned_images,
512510
cells_table=cells_table,
513-
n_jobs=n_jobs,
514511
)
515512
sdata.write(output)
516513

0 commit comments

Comments
 (0)