Skip to content

Commit

Permalink
Removed TODO from 3 files (#141)
Browse files Browse the repository at this point in the history
  • Loading branch information
Riyagoel2 authored Mar 12, 2020
1 parent 019fddf commit b257d5a
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion pydatastructs/graphs/algorithms.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion pydatastructs/trees/binary_trees.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__ = [
Expand Down
1 change: 0 additions & 1 deletion pydatastructs/trees/space_partitioning_trees.py
Original file line number Diff line number Diff line change
@@ -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

Expand Down

0 comments on commit b257d5a

Please sign in to comment.