diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 4b10603..4c7c301 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -13,13 +13,13 @@ default_language_version: repos: - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.7.0 + rev: v0.13.3 hooks: - id: ruff args: [ --fix ] - id: ruff-format - repo: https://github.com/codespell-project/codespell - rev: v2.3.0 + rev: v2.4.1 hooks: - id: codespell additional_dependencies: diff --git a/audplot/core/api.py b/audplot/core/api.py index e2083e4..9a28a12 100644 --- a/audplot/core/api.py +++ b/audplot/core/api.py @@ -160,7 +160,9 @@ def confusion_matrix( .. plot:: :context: close-figs - >>> confusion_matrix(truth, prediction, label_aliases={0: "A", 1: "B", 2: "C"}) + >>> confusion_matrix( + ... truth, prediction, label_aliases={0: "A", 1: "B", 2: "C"} + ... ) """ # noqa: E501 ax = ax or plt.gca()