Skip to content

Commit

Permalink
TST: update ruff and codespell versions (#187)
Browse files Browse the repository at this point in the history
* TST: update ruff and codespell versions

* Fix linter
  • Loading branch information
hagenw authored Dec 16, 2024
1 parent 813260e commit 0f3c997
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ default_language_version:

repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.1.8
rev: v0.7.0
hooks:
- id: ruff
args: [ --fix ]
- id: ruff-format
- repo: https://github.com/codespell-project/codespell
rev: v2.2.4
rev: v2.3.0
hooks:
- id: codespell
additional_dependencies:
Expand Down
1 change: 1 addition & 0 deletions audinterface/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Generic processing interfaces."""

from audinterface import utils
from audinterface.core.feature import Feature
from audinterface.core.process import Process
Expand Down
2 changes: 1 addition & 1 deletion docs/usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ Feature interface for external function

If we interface a function from an external library
that already applies a sliding window,
we again specfiy the
we again specify the
``win_dur`` and ``hop_dur``
arguments.
However,
Expand Down

0 comments on commit 0f3c997

Please sign in to comment.