diff --git a/pydatastructs/graphs/algorithms.py b/pydatastructs/graphs/algorithms.py index 3f253f3b6..e8c813b90 100644 --- a/pydatastructs/graphs/algorithms.py +++ b/pydatastructs/graphs/algorithms.py @@ -2,7 +2,6 @@ Contains all the algorithms associated with graph data structure. """ -# TODO: REPLACE COLLECTIONS QUEUE WITH PYDATASTRUCTS QUEUE from collections import deque as Queue from pydatastructs.utils.misc_util import AdjacencyListGraphNode from concurrent.futures import ThreadPoolExecutor diff --git a/pydatastructs/trees/binary_trees.py b/pydatastructs/trees/binary_trees.py index c5ee66256..15ad4909f 100644 --- a/pydatastructs/trees/binary_trees.py +++ b/pydatastructs/trees/binary_trees.py @@ -3,7 +3,6 @@ from pydatastructs.linear_data_structures import ( OneDimensionalArray, DynamicOneDimensionalArray) from pydatastructs.linear_data_structures.arrays import ArrayForTrees -# TODO: REPLACE COLLECTIONS QUEUE WITH PYDATASTRUCTS QUEUE from collections import deque as Queue __all__ = [ diff --git a/pydatastructs/trees/space_partitioning_trees.py b/pydatastructs/trees/space_partitioning_trees.py index b302cff29..5b5b03324 100644 --- a/pydatastructs/trees/space_partitioning_trees.py +++ b/pydatastructs/trees/space_partitioning_trees.py @@ -1,5 +1,4 @@ from pydatastructs.utils import TreeNode -# TODO: REPLACE COLLECTIONS QUEUE WITH PYDATASTRUCTS QUEUE from collections import deque as Queue from pydatastructs.linear_data_structures.arrays import _check_type