From f3e9d45841c79682bdd4870f81a7b6504d147872 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Sun, 14 Jan 2024 01:19:57 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- tests/test_sce_slice.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/test_sce_slice.py b/tests/test_sce_slice.py index cbd38d5..bdffcc7 100644 --- a/tests/test_sce_slice.py +++ b/tests/test_sce_slice.py @@ -51,8 +51,10 @@ def test_SCE_slice(): tse = SingleCellExperiment( - assays={"counts": counts}, row_data=row_data, column_data=col_data, - reduced_dims={"random_embeds": np.random.rand(ncols, 5)} + assays={"counts": counts}, + row_data=row_data, + column_data=col_data, + reduced_dims={"random_embeds": np.random.rand(ncols, 5)}, ) tse_slice = tse[0:10, 0:3]