Skip to content
This repository was archived by the owner on Feb 11, 2025. It is now read-only.
Open
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
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ repos:
# python code formatting/linting
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: "v0.9.2"
rev: "v0.9.6"
hooks:
- id: ruff
args: [--fix]
- repo: https://github.com/psf/black
rev: 24.10.0
rev: 25.1.0
hooks:
- id: black
args: [--line-length, "100"]
Expand Down
2 changes: 1 addition & 1 deletion ocf_blosc2/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
""" Main init file """
"""Main init file"""

from .ocf_blosc2 import Blosc2
2 changes: 1 addition & 1 deletion ocf_blosc2/ocf_blosc2.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
""" Main code file """
"""Main code file"""

import blosc2
from numcodecs.abc import Codec
Expand Down