File tree 3 files changed +3
-4
lines changed
3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -11,8 +11,6 @@ script:
11
11
- scripts/validate_filenames.py # no uppercase and no spaces
12
12
- mypy --ignore-missing-imports .
13
13
- pytest . --doctest-modules
14
- --ignore=data_structures/stacks/balanced_parentheses.py
15
- --ignore=data_structures/stacks/infix_to_postfix_conversion.py
16
14
--ignore=file_transfer_protocol/ftp_send_receive.py
17
15
--ignore=file_transfer_protocol/ftp_client_server.py
18
16
--ignore=machine_learning/linear_regression.py
Original file line number Diff line number Diff line change 1
1
from __future__ import print_function
2
2
from __future__ import absolute_import
3
- from stack import Stack
3
+
4
+ from .stack import Stack
4
5
5
6
__author__ = 'Omkar Pathak'
6
7
Original file line number Diff line number Diff line change 2
2
from __future__ import absolute_import
3
3
import string
4
4
5
- from stack import Stack
5
+ from . stack import Stack
6
6
7
7
__author__ = 'Omkar Pathak'
8
8
You can’t perform that action at this time.
0 commit comments