Skip to content

Commit 1459adf

Browse files
committed
fixed pre-commit issues
1 parent 1ff7975 commit 1459adf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: machine_learning/frequent_pattern_growth.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ def ascend_tree(leaf_node: TreeNode, prefix_path: list[str]) -> None:
240240
ascend_tree(leaf_node.parent, prefix_path)
241241

242242

243-
def find_prefix_path(base_pat: frozenset, tree_node: TreeNode | None) -> dict:
243+
def find_prefix_path(_: frozenset, tree_node: TreeNode | None) -> dict:
244244
"""
245245
Find the conditional pattern base for a given base pattern.
246246

0 commit comments

Comments
 (0)