Fix data_structures to pass our Travis CI pytests (#1088)

* Fix data_structures to pass pytests

* Restore data_structures/stacks/__init__.py
This commit is contained in:
Christian Clauss
2019-07-31 17:14:35 +02:00
committed by John Law
parent 4a5589f4fc
commit 7b267e5e4f
3 changed files with 3 additions and 4 deletions

View File

@@ -1,6 +1,7 @@
from __future__ import print_function
from __future__ import absolute_import
from stack import Stack
from .stack import Stack
__author__ = 'Omkar Pathak'

View File

@@ -2,7 +2,7 @@ from __future__ import print_function
from __future__ import absolute_import
import string
from stack import Stack
from .stack import Stack
__author__ = 'Omkar Pathak'