Skip to content

Commit 23da2e8

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 675e10c commit 23da2e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

marimo/_save/hash.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def hash_module(
7878

7979
def process(code_obj: CodeType) -> None:
8080
# Recursively hash the constants that are also code objects
81-
for const in code_obj.co_consts:
81+
for const in code_obj.co_constants:
8282
if isinstance(const, types.CodeType):
8383
process(const)
8484
else:

0 commit comments

Comments
 (0)