Skip to content

Commit d0f4e19

Browse files
committed
tree code
1 parent 2a8d1f3 commit d0f4e19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tree/Binary_tree/bintree_bfs_and_dfs.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ class BinTreeStack:
118118
"""
119119

120120
def __init__(self, root=None):
121-
# super().__init__(root) # python3
121+
super().__init__(root) # python3
122122
# super(BinTreeStack, self).__init__(root) # python2
123123
self.root = root
124124
self.stack = []

0 commit comments

Comments
 (0)