From b257d5ab137197125a2644677981f4df42d68c78 Mon Sep 17 00:00:00 2001 From: Riyagoel2 <48710355+Riyagoel2@users.noreply.github.com> Date: Thu, 12 Mar 2020 18:41:39 +0530 Subject: [PATCH] Removed TODO from 3 files (#141) --- pydatastructs/graphs/algorithms.py | 1 - pydatastructs/trees/binary_trees.py | 1 - pydatastructs/trees/space_partitioning_trees.py | 1 - 3 files changed, 3 deletions(-) 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