Skip to content

Commit 891c914

Browse files
committed
check
1 parent 62595ad commit 891c914

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
@@ -93,7 +93,7 @@ static PyObject* BinaryTree___str__(BinaryTree *self) {
9393
PyList_SET_ITEM(list, i, empty_string);
9494
}
9595
}
96-
return PyObject_Str(list);
96+
return PyObject_Str(list); // use this or __str()__ (that is defined in utils)?
9797
}
9898

9999
static struct PyMethodDef BinaryTree_PyMethodDef[] = {

0 commit comments

Comments
 (0)