Skip to content

Commit e64627d

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

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

machine_learning/frequent_pattern_growth.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -240,9 +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(
244-
base_pat: frozenset, tree_node: TreeNode | None
245-
) -> dict: # noqa: ARG001
243+
def find_prefix_path(base_pat: frozenset, tree_node: TreeNode | None) -> dict: # noqa: ARG001
246244
"""
247245
Find the conditional pattern base for a given base pattern.
248246

0 commit comments

Comments
 (0)