Skip to content

Commit b59b0ef

Browse files
committed
chore: initialise extension file to prevent build failure
1 parent fc75883 commit b59b0ef

File tree

5 files changed

+12
-0
lines changed

5 files changed

+12
-0
lines changed

pydatastructs/graphs/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
)
77
__all__.extend(graph.__all__)
88

9+
from . import _extensions
10+
11+
912
from . import algorithms
1013
from . import adjacency_list
1114
from . import adjacency_matrix

pydatastructs/linear_data_structures/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
algorithms,
77
)
88

9+
from . import _extensions
10+
911
from .arrays import (
1012
OneDimensionalArray,
1113
DynamicOneDimensionalArray,

pydatastructs/miscellaneous_data_structures/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
sparse_table,
99
)
1010

11+
from . import _extensions
12+
1113
from .binomial_trees import (
1214
BinomialTree
1315
)

pydatastructs/trees/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
heaps,
88
)
99

10+
from . import _extensions
11+
12+
1013
from .binary_trees import (
1114
BinaryTree,
1215
BinarySearchTree,

pydatastructs/utils/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
testing_util,
66
)
77

8+
from . import _extensions
9+
810
from .misc_util import (
911
TreeNode,
1012
MAryTreeNode,

0 commit comments

Comments
 (0)