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
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
rev: v6.0.0
hooks:
- id: check-added-large-files
args: ['--maxkb=25']
Expand All @@ -23,16 +23,16 @@ repos:
- id: python-use-type-annotations
- id: text-unicode-replacement-char
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.3.4
rev: v0.12.10
hooks:
- id: ruff
- id: ruff-format
- repo: https://github.com/dosisod/refurb
rev: v2.0.0
rev: v2.1.0
hooks:
- id: refurb
- repo: https://github.com/executablebooks/mdformat
rev: 0.7.17
rev: 0.7.22
hooks:
- id: mdformat
additional_dependencies: [
Expand All @@ -52,7 +52,7 @@ repos:
# ]
# args: [--wrap, "88"]
- repo: https://github.com/codespell-project/codespell
rev: v2.2.6
rev: v2.4.1
hooks:
- id: codespell
# - repo: https://github.com/pre-commit/mirrors-mypy
Expand Down
2 changes: 1 addition & 1 deletion src/project/task_data_catalog.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@


def task_create_data_catalog_node(
node: Annotated[PickleNode, Product] = cast(PickleNode, data_catalog["first"]), # noqa: B008
node: Annotated[PickleNode, Product] = cast("PickleNode", data_catalog["first"]), # noqa: B008
) -> None:
node.save("Hello,")

Expand Down