From a3972dd9b4b0675d52cd1dcdf9fc2c92d677f0eb Mon Sep 17 00:00:00 2001 From: Rafael Date: Fri, 30 Jun 2017 21:12:10 +0200 Subject: [PATCH] fix indent error --- data_structures/Binary Tree/binary_seach_tree.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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