#273: Remove nose dependency for graphs_trees/ (#277)

This commit is contained in:
Donne Martin
2020-07-10 21:02:32 -04:00
committed by GitHub
parent 139e157250
commit abf7524c26
67 changed files with 860 additions and 1027 deletions

View File

@@ -40,4 +40,4 @@ class Bst(object):
node.right.parent = node
return node.right
else:
return self._insert(node.right, data)
return self._insert(node.right, data)