File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,8 +11,6 @@ script:
1111 - scripts/validate_filenames.py # no uppercase and no spaces
1212 - mypy --ignore-missing-imports .
1313 - pytest . --doctest-modules
14- --ignore=data_structures/stacks/balanced_parentheses.py
15- --ignore=data_structures/stacks/infix_to_postfix_conversion.py
1614 --ignore=file_transfer_protocol/ftp_send_receive.py
1715 --ignore=file_transfer_protocol/ftp_client_server.py
1816 --ignore=machine_learning/linear_regression.py
Original file line number Diff line number Diff line change 11from __future__ import print_function
22from __future__ import absolute_import
3- from stack import Stack
3+
4+ from .stack import Stack
45
56__author__ = 'Omkar Pathak'
67
Original file line number Diff line number Diff line change 22from __future__ import absolute_import
33import string
44
5- from stack import Stack
5+ from . stack import Stack
66
77__author__ = 'Omkar Pathak'
88
You can’t perform that action at this time.
0 commit comments