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
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ repos:
- id: check-yaml

- repo: https://github.com/rhysd/actionlint
rev: v1.7.10
rev: v1.7.11
hooks:
- id: actionlint
args: [-ignore, SC]
Expand All @@ -25,13 +25,13 @@ repos:
exclude: ^marimo/_tutorials/.*\.md

- repo: https://github.com/crate-ci/typos
rev: v1.43.1
rev: v1
hooks:
- id: typos
pass_filenames: false

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.15.0
rev: v0.15.1
hooks:
# Run the linter
- id: ruff
Expand All @@ -40,7 +40,7 @@ repos:
- id: ruff-format

- repo: https://github.com/biomejs/pre-commit
rev: v2.3.13
rev: v2.3.15
hooks:
- id: biome-check
args: [--diagnostic-level, warn]
Expand Down
2 changes: 1 addition & 1 deletion marimo/_save/hash.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def hash_module(

def process(code_obj: CodeType) -> None:
# Recursively hash the constants that are also code objects
for const in code_obj.co_consts:
for const in code_obj.co_constants:
if isinstance(const, types.CodeType):
process(const)
else:
Expand Down
Loading