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