Skip to content

Commit

Permalink
Merge pull request #200 from scverse/pre-commit-ci-update-config
Browse files Browse the repository at this point in the history
[pre-commit.ci] pre-commit autoupdate
  • Loading branch information
LucaMarconato authored Mar 18, 2024
2 parents 5965a3e + 95421a1 commit 602c27a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,25 +9,25 @@ ci:
skip: []
repos:
- repo: https://github.com/psf/black
rev: 23.11.0
rev: 24.3.0
hooks:
- id: black
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v3.1.0
rev: v4.0.0-alpha.8
hooks:
- id: prettier
- repo: https://github.com/asottile/blacken-docs
rev: 1.16.0
hooks:
- id: blacken-docs
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.7.0
rev: v1.9.0
hooks:
- id: mypy
additional_dependencies: [numpy, types-requests]
exclude: tests/|docs/
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.1.6
rev: v0.3.3
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
4 changes: 2 additions & 2 deletions src/spatialdata_plot/pl/render.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def _render_shapes(
cmap=render_params.cmap_params.cmap,
norm=norm,
fill_alpha=render_params.fill_alpha,
outline_alpha=render_params.outline_alpha
outline_alpha=render_params.outline_alpha,
# **kwargs,
)

Expand Down Expand Up @@ -284,7 +284,7 @@ def _render_points(
cmap=render_params.cmap_params.cmap,
norm=norm,
alpha=render_params.alpha,
transform=trans
transform=trans,
# **kwargs,
)
cax = ax.add_collection(_cax)
Expand Down

0 comments on commit 602c27a

Please sign in to comment.