diff --git a/AUTHORS b/AUTHORS index 151ac7c21..edf1650a9 100644 --- a/AUTHORS +++ b/AUTHORS @@ -2,3 +2,4 @@ Gagandeep Singh Kartikei Mittal Umesh<23umesh.here@gmail.com> Rohan Singh +Tarun Singh Tomar diff --git a/pydatastructs/linear_data_structures/arrays.py b/pydatastructs/linear_data_structures/arrays.py index 81e8c4181..6f602c4c1 100644 --- a/pydatastructs/linear_data_structures/arrays.py +++ b/pydatastructs/linear_data_structures/arrays.py @@ -1,4 +1,3 @@ -from __future__ import print_function, division from pydatastructs.utils.misc_util import _check_type, NoneType __all__ = [ diff --git a/pydatastructs/linear_data_structures/linked_lists.py b/pydatastructs/linear_data_structures/linked_lists.py index 35dbc9f4f..619229573 100644 --- a/pydatastructs/linear_data_structures/linked_lists.py +++ b/pydatastructs/linear_data_structures/linked_lists.py @@ -1,4 +1,3 @@ -from __future__ import print_function, division from pydatastructs.utils.misc_util import _check_type, LinkedListNode __all__ = [ diff --git a/pydatastructs/miscellaneous_data_structures/stack.py b/pydatastructs/miscellaneous_data_structures/stack.py index 9b82ca465..a83c562bc 100644 --- a/pydatastructs/miscellaneous_data_structures/stack.py +++ b/pydatastructs/miscellaneous_data_structures/stack.py @@ -1,5 +1,3 @@ - -from __future__ import print_function, division from pydatastructs.linear_data_structures import OneDimensionalArray from copy import deepcopy as dc diff --git a/pydatastructs/trees/binary_trees.py b/pydatastructs/trees/binary_trees.py index b5fc123bc..3cbe6819b 100644 --- a/pydatastructs/trees/binary_trees.py +++ b/pydatastructs/trees/binary_trees.py @@ -1,4 +1,3 @@ -from __future__ import print_function, division from pydatastructs.utils import TreeNode from pydatastructs.miscellaneous_data_structures import Stack from pydatastructs.linear_data_structures import ( diff --git a/pydatastructs/utils/misc_util.py b/pydatastructs/utils/misc_util.py index b55dde764..54c584cc6 100644 --- a/pydatastructs/utils/misc_util.py +++ b/pydatastructs/utils/misc_util.py @@ -1,4 +1,4 @@ -from __future__ import print_function, division + __all__ = [ 'TreeNode',