Skip to content

Commit eb602e6

Browse files
committed
checking
1 parent 96b6c9f commit eb602e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pydatastructs/trees/_backend/cpp/BinaryTree.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ static PyObject* BinaryTree___new__(PyTypeObject* type, PyObject *args, PyObject
4949

5050
// obj.tree= ArrayForTrees(TreeNode, [root])
5151
PyObject* listroot = Py_BuildValue("[i]", root);
52-
self->tree = ArrayForTrees(&TreeNodeType, listroot); // check if this is correct
52+
// self->tree = ArrayForTrees(&TreeNodeType, listroot); // check if this is correct
5353
self->size = 1;
5454

5555
// if(comp == Py_None){

0 commit comments

Comments
 (0)