Skip to content

Commit

Permalink
[pre-commit.ci] pre-commit autoupdate (#194)
Browse files Browse the repository at this point in the history
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Philipp A. <[email protected]>
  • Loading branch information
pre-commit-ci[bot] and flying-sheep authored Dec 10, 2024
1 parent f2403bb commit 2aa17f8
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repos:
hooks:
- id: prettier
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.8.1
rev: v0.8.2
hooks:
- id: ruff
types_or: [python, pyi, jupyter]
Expand Down
28 changes: 14 additions & 14 deletions docs/notebooks/tutorial_axes_anndata_mudata.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -154,79 +154,79 @@
"name": "stderr",
"output_type": "stream",
"text": [
"\r",
"\r\n",
" 0%| | 0/2091 [00:00<?, ?it/s, 16.3MiB, filtered_feature_bc_matrix.h5, pbmc5k_citeseq]"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r",
"\r\n",
" 0%| | 7/2091 [00:00<00:40, 52.00it/s, 16.3MiB, filtered_feature_bc_matrix.h5, pbmc5k_citeseq]"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r",
"\r\n",
" 2%|▏ | 36/2091 [00:00<00:13, 146.98it/s, 16.3MiB, filtered_feature_bc_matrix.h5, pbmc5k_citeseq]"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r",
"\r\n",
" 7%|▋ | 151/2091 [00:00<00:03, 509.45it/s, 16.3MiB, filtered_feature_bc_matrix.h5, pbmc5k_citeseq]"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r",
"\r\n",
" 19%|█▉ | 401/2091 [00:00<00:01, 1194.28it/s, 16.3MiB, filtered_feature_bc_matrix.h5, pbmc5k_citeseq]"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r",
"\r\n",
" 38%|███▊ | 791/2091 [00:00<00:00, 1407.51it/s, 16.3MiB, filtered_feature_bc_matrix.h5, pbmc5k_citeseq]"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r",
"\r\n",
" 49%|████▉ | 1023/2091 [00:00<00:00, 1353.59it/s, 16.3MiB, filtered_feature_bc_matrix.h5, pbmc5k_citeseq]"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r",
"\r\n",
" 87%|████████▋ | 1816/2091 [00:01<00:00, 1946.52it/s, 16.3MiB, filtered_feature_bc_matrix.h5, pbmc5k_citeseq]"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r",
"\r\n",
" 98%|█████████▊| 2047/2091 [00:01<00:00, 1862.19it/s, 16.3MiB, filtered_feature_bc_matrix.h5, pbmc5k_citeseq]"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r",
"\r\n",
"100%|██████████| 2091/2091 [00:01<00:00, 1536.82it/s, 16.3MiB, filtered_feature_bc_matrix.h5, pbmc5k_citeseq]"
]
},
Expand Down Expand Up @@ -764,7 +764,7 @@
},
{
"cell_type": "code",
"execution_count": 22,
"execution_count": null,
"metadata": {},
"outputs": [
{
Expand All @@ -778,9 +778,9 @@
}
],
"source": [
"print(\"Total number of cells %i and genes %r for raw rna anndata\" % (rna_raw.n_obs, rna_raw.n_vars))\n",
"print(\"Total number of cells %i and genes %r for preprocessed rna_a anndata\" % (rna_a.n_obs, rna_a.n_vars))\n",
"print(\"Total number of cells %i and genes %r for preprocessed rna_a anndata\" % (rna_b.n_obs, rna_b.n_vars))"
"print(f\"Total number of cells {rna_raw.n_obs} and genes {rna_raw.n_vars} for raw rna anndata\")\n",
"print(f\"Total number of cells {rna_a.n_obs} and genes {rna_a.n_vars} for preprocessed rna_a anndata\")\n",
"print(f\"Total number of cells {rna_b.n_obs} and genes {rna_b.n_vars} for preprocessed rna_a anndata\")"
]
},
{
Expand Down

0 comments on commit 2aa17f8

Please sign in to comment.