We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3cced0 commit 0d7817aCopy full SHA for 0d7817a
2 files changed
.pre-commit-config.yaml
@@ -3,7 +3,7 @@ ci:
3
4
repos:
5
- repo: https://github.com/astral-sh/ruff-pre-commit
6
- rev: v0.14.9
+ rev: v0.14.10
7
hooks:
8
- id: ruff-check
9
args: ["--fix"]
@@ -13,7 +13,7 @@ repos:
13
id: ruff
14
args: ["--preview", "--select=PLR0917"]
15
- repo: https://github.com/biomejs/pre-commit
16
- rev: v2.3.8
+ rev: v2.3.10
17
18
- id: biome-format
19
- repo: https://github.com/ComPWA/taplo-pre-commit
src/anndata/_core/anndata.py
@@ -1805,7 +1805,8 @@ def concatenate(
1805
out.var = out.var.iloc[
1806
:,
1807
(
1808
- out.var.columns.str.extract(pat, expand=False)
+ out.var.columns.str
1809
+ .extract(pat, expand=False)
1810
.fillna("")
1811
.argsort(kind="stable")
1812
),
0 commit comments