Skip to content

Commit e755bbf

Browse files
committed
Fix ruff check for machine_learning/frequent_pattern_growth.py:243:22
1 parent 59bb29b commit e755bbf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

machine_learning/frequent_pattern_growth.py

Lines changed: 1 addition & 1 deletion
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(_base_pat: frozenset, tree_node: TreeNode | None) -> dict:
244244
"""
245245
Find the conditional pattern base for a given base pattern.
246246

0 commit comments

Comments
 (0)