Skip to content

Commit 04195d4

Browse files
committed
checking
1 parent a05b2b3 commit 04195d4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

pydatastructs/utils/misc_util.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import math, pydatastructs
22
from enum import Enum
3-
from pydatastructs.utils._backend.cpp import _nodes
3+
from pydatastructs.linear_data_structures._backend.cpp import _arrays
4+
# from pydatastructs.utils._backend.cpp import _nodes
45

56
__all__ = [
67
'TreeNode',
@@ -77,7 +78,7 @@ def __new__(cls, key, data=None, **kwargs):
7778
# print("backend checked")
7879
if backend == Backend.CPP:
7980
print("Backend switched to C++")
80-
return _nodes.TreeNode(key, data, **kwargs)
81+
# return _nodes.TreeNode(key, data, **kwargs)
8182
obj = Node.__new__(cls)
8283
obj.data, obj.key = data, key
8384
obj.left, obj.right, obj.parent, obj.height, obj.size = \

0 commit comments

Comments
 (0)