Skip to content

Commit cbc759b

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data_structures/binary_tree/maximum_sum_bst.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def max_sum_bst(root: TreeNode) -> int:
4444
"""
4545
ans: int = 0
4646

47-
def solver(node: 'TreeNode' | None) -> tuple[bool, int, int, int]:
47+
def solver(node: "TreeNode" | None) -> tuple[bool, int, int, int]:
4848
"""
4949
Returns the maximum sum by making recursive calls
5050
>>> t1 = TreeNode(1)

0 commit comments

Comments
 (0)