Skip to content

Commit 18c7c13

Browse files
committed
add documentation for get
fix #369
1 parent 49d5c42 commit 18c7c13

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/rapids_singlecell/get/_anndata.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
if TYPE_CHECKING:
2626
from anndata import AnnData
2727

28-
GPU_ARRAY_TYPE = Union[cp.ndarray, csr_matrix_gpu, csc_matrix_gpu] # noqa: UP007
29-
CPU_ARRAY_TYPE = Union[np.ndarray, csr_matrix_cpu, csc_matrix_cpu] # noqa: UP007
28+
GPU_ARRAY_TYPE = Union[cp.ndarray, csr_matrix_gpu, csc_matrix_gpu, DaskArray] # noqa: UP007
29+
CPU_ARRAY_TYPE = Union[np.ndarray, csr_matrix_cpu, csc_matrix_cpu, DaskArray] # noqa: UP007
3030

3131

3232
def anndata_to_GPU(

0 commit comments

Comments
 (0)