Skip to content

Commit

Permalink
fixed problem with refcount not having a default
Browse files Browse the repository at this point in the history
  • Loading branch information
renxida committed Dec 4, 2024
1 parent 9eb7aaf commit 44b85ad
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class TrieNode:
page: PageInfo
children: Optional[Dict[Tuple[int, ...], "TrieNode"]] = None
parent: Optional["TrieNode"] = None
ref_count: RefCount
ref_count: RefCount = None
access_time: float = 0.0

def __post_init__(self) -> None:
Expand Down

0 comments on commit 44b85ad

Please sign in to comment.