diff --git a/data_structures/Binary Tree/binary_seach_tree.py b/data_structures/Binary Tree/binary_seach_tree.py index b6aac2990..1f14514b5 100644 --- a/data_structures/Binary Tree/binary_seach_tree.py +++ b/data_structures/Binary Tree/binary_seach_tree.py @@ -12,7 +12,7 @@ class Node: return self.label def setLabel(self, label): - self.label = label + self.label = label def getLeft(self): return self.left