Skip to content

Commit b257d5a

Browse files
authored
Removed TODO from 3 files (#141)
1 parent 019fddf commit b257d5a

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

pydatastructs/graphs/algorithms.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
Contains all the algorithms associated with graph
33
data structure.
44
"""
5-
# TODO: REPLACE COLLECTIONS QUEUE WITH PYDATASTRUCTS QUEUE
65
from collections import deque as Queue
76
from pydatastructs.utils.misc_util import AdjacencyListGraphNode
87
from concurrent.futures import ThreadPoolExecutor

pydatastructs/trees/binary_trees.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
from pydatastructs.linear_data_structures import (
44
OneDimensionalArray, DynamicOneDimensionalArray)
55
from pydatastructs.linear_data_structures.arrays import ArrayForTrees
6-
# TODO: REPLACE COLLECTIONS QUEUE WITH PYDATASTRUCTS QUEUE
76
from collections import deque as Queue
87

98
__all__ = [

pydatastructs/trees/space_partitioning_trees.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
from pydatastructs.utils import TreeNode
2-
# TODO: REPLACE COLLECTIONS QUEUE WITH PYDATASTRUCTS QUEUE
32
from collections import deque as Queue
43
from pydatastructs.linear_data_structures.arrays import _check_type
54

0 commit comments

Comments
 (0)