Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,29 +22,29 @@ repos:
- --autofix

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.9.10
rev: v0.12.7
hooks:
- id: ruff
args: ["--fix", "--show-fixes"]

- repo: https://github.com/psf/black
rev: 24.10.0
rev: 25.1.0
hooks:
- id: black

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.13.0
rev: v1.17.1
hooks:
- id: mypy
args: [--config-file=mypy.ini]

- repo: https://github.com/adrienverge/yamllint.git
rev: v1.35.1
rev: v1.37.1
hooks:
- id: yamllint
args: [--config-data=relaxed]

- repo: https://github.com/codespell-project/codespell
rev: v2.3.0
rev: v2.4.1
hooks:
- id: codespell
3 changes: 1 addition & 2 deletions ome_zarr/axes.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""Axes class for validating and transforming axes
"""
"""Axes class for validating and transforming axes"""

from typing import Any

Expand Down
2 changes: 1 addition & 1 deletion ome_zarr/csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def csv_to_zarr(
cols_types_by_name[col_name_type] = "s"

csv_columns = None
id_column = None
id_column: int

props_by_id: dict[str | int, dict] = {}

Expand Down
Loading