diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 98c176e..ce7dd14 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,20 +1,20 @@ repos: - repo: https://github.com/python-poetry/poetry - rev: "2.2.1" + rev: "2.3.2" hooks: - id: poetry-check - id: poetry-lock - repo: https://github.com/python-poetry/poetry-plugin-export - rev: "1.9.0" + rev: "1.10.0" hooks: - id: poetry-export args: ["-f", "requirements.txt", "-o", "docs/requirements.txt", "--without-hashes", "--only", "doc"] - repo: https://github.com/psf/black-pre-commit-mirror - rev: "25.12.0" + rev: "26.3.1" hooks: - id: black - repo: https://github.com/pycqa/isort - rev: "7.0.0" + rev: "8.0.1" hooks: - id: isort - repo: https://github.com/pycqa/pydocstyle @@ -22,11 +22,11 @@ repos: hooks: - id: pydocstyle - repo: https://github.com/astral-sh/ruff-pre-commit - rev: "v0.14.9" + rev: "v0.15.10" hooks: - id: ruff - repo: https://github.com/pre-commit/mirrors-mypy - rev: "v1.19.0" + rev: "v1.20.1" hooks: - id: mypy - repo: https://github.com/markdownlint/markdownlint diff --git a/src/peakrdl_markdown/exporter.py b/src/peakrdl_markdown/exporter.py index f54b53e..8fc70e2 100644 --- a/src/peakrdl_markdown/exporter.py +++ b/src/peakrdl_markdown/exporter.py @@ -12,7 +12,7 @@ from pathlib import Path from typing import List, Optional, Union -from py_markdown_table.markdown_table import markdown_table # type:ignore +from py_markdown_table.markdown_table import markdown_table # type: ignore from systemrdl.messages import MessageHandler # type: ignore from systemrdl.node import ( # type: ignore AddressableNode,