Skip to content

Commit fe7fd75

Browse files
committed
Fix linter's bug
1 parent b88f897 commit fe7fd75

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

binary_search_tree/binary_serch_tree.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,11 @@ def max(self):
118118
def get_successor_key(self, key):
119119
"""Return the node that contains next key.
120120
121+
Args:
122+
key: key for search next key
123+
121124
Returns:
122-
node: next keys
125+
node: node contains next keys
123126
"""
124127
successor = None
125128
cur = self._root

0 commit comments

Comments
 (0)