Skip to content

Commit 0d7817a

Browse files
ci: pre-commit autoupdate (#2263)
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent f3cced0 commit 0d7817a

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ ci:
33

44
repos:
55
- repo: https://github.com/astral-sh/ruff-pre-commit
6-
rev: v0.14.9
6+
rev: v0.14.10
77
hooks:
88
- id: ruff-check
99
args: ["--fix"]
@@ -13,7 +13,7 @@ repos:
1313
id: ruff
1414
args: ["--preview", "--select=PLR0917"]
1515
- repo: https://github.com/biomejs/pre-commit
16-
rev: v2.3.8
16+
rev: v2.3.10
1717
hooks:
1818
- id: biome-format
1919
- repo: https://github.com/ComPWA/taplo-pre-commit

src/anndata/_core/anndata.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1805,7 +1805,8 @@ def concatenate(
18051805
out.var = out.var.iloc[
18061806
:,
18071807
(
1808-
out.var.columns.str.extract(pat, expand=False)
1808+
out.var.columns.str
1809+
.extract(pat, expand=False)
18091810
.fillna("")
18101811
.argsort(kind="stable")
18111812
),

0 commit comments

Comments
 (0)