Skip to content

Commit 602c27a

Browse files
Merge pull request #200 from scverse/pre-commit-ci-update-config
[pre-commit.ci] pre-commit autoupdate
2 parents 5965a3e + 95421a1 commit 602c27a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,25 +9,25 @@ ci:
99
skip: []
1010
repos:
1111
- repo: https://github.com/psf/black
12-
rev: 23.11.0
12+
rev: 24.3.0
1313
hooks:
1414
- id: black
1515
- repo: https://github.com/pre-commit/mirrors-prettier
16-
rev: v3.1.0
16+
rev: v4.0.0-alpha.8
1717
hooks:
1818
- id: prettier
1919
- repo: https://github.com/asottile/blacken-docs
2020
rev: 1.16.0
2121
hooks:
2222
- id: blacken-docs
2323
- repo: https://github.com/pre-commit/mirrors-mypy
24-
rev: v1.7.0
24+
rev: v1.9.0
2525
hooks:
2626
- id: mypy
2727
additional_dependencies: [numpy, types-requests]
2828
exclude: tests/|docs/
2929
- repo: https://github.com/astral-sh/ruff-pre-commit
30-
rev: v0.1.6
30+
rev: v0.3.3
3131
hooks:
3232
- id: ruff
3333
args: [--fix, --exit-non-zero-on-fix]

src/spatialdata_plot/pl/render.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ def _render_shapes(
132132
cmap=render_params.cmap_params.cmap,
133133
norm=norm,
134134
fill_alpha=render_params.fill_alpha,
135-
outline_alpha=render_params.outline_alpha
135+
outline_alpha=render_params.outline_alpha,
136136
# **kwargs,
137137
)
138138

@@ -284,7 +284,7 @@ def _render_points(
284284
cmap=render_params.cmap_params.cmap,
285285
norm=norm,
286286
alpha=render_params.alpha,
287-
transform=trans
287+
transform=trans,
288288
# **kwargs,
289289
)
290290
cax = ax.add_collection(_cax)

0 commit comments

Comments
 (0)