[pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci
This commit is contained in:
pre-commit-ci[bot] 2023-10-21 05:52:58 +00:00
parent 0ea8df7682
commit 71776e7802

View File

@ -193,7 +193,9 @@ def update_header(node_to_test: TreeNode, target_node: TreeNode) -> TreeNode:
while node_to_test.node_link is not None:
node_to_test = node_to_test.node_link
if node_to_test.node_link is None:
node_to_test.node_link = TreeNode(target_node.name, target_node.count, node_to_test)
node_to_test.node_link = TreeNode(
target_node.name, target_node.count, node_to_test
)
# Return the updated node
return node_to_test