Skip to content
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
12 changes: 6 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
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
rev: "6.3.0"
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
Expand Down
2 changes: 1 addition & 1 deletion src/peakrdl_markdown/exporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Loading