Skip to content

Commit b856a6a

Browse files
committed
hopefully tests work now
1 parent 5e60cf9 commit b856a6a

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

tests/test_main.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
"""Unit tests for main.py
22
"""
33

4-
from ..tables import Table
4+
try:
5+
from ..tables import Table
6+
except:
7+
try:
8+
from tables import Table
9+
except:
10+
from .tables import Table
511

612
def test_tables():
713
"""Unit tests for Table() class

0 commit comments

Comments
 (0)