Skip to content

Commit d49de62

Browse files
authored
Fix invalid escape sequence in binary_search_tree.py
data_structures/binary_tree/binary_search_tree.py:156 /home/travis/build/TheAlgorithms/Python/data_structures/binary_tree/binary_search_tree.py:156: DeprecationWarning: invalid escape sequence \
1 parent 3d0680e commit d49de62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data_structures/binary_tree/binary_search_tree.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ def postorder(curr_node):
153153

154154

155155
def binary_search_tree():
156-
"""
156+
r"""
157157
Example
158158
8
159159
/ \

0 commit comments

Comments
 (0)