Skip to content

Commit

Permalink
hopefully tests work now
Browse files Browse the repository at this point in the history
  • Loading branch information
cootshk committed Nov 2, 2023
1 parent 5e60cf9 commit b856a6a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tests/test_main.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
"""Unit tests for main.py
"""

from ..tables import Table
try:
from ..tables import Table
except:
try:
from tables import Table
except:
from .tables import Table

def test_tables():
"""Unit tests for Table() class
Expand Down

0 comments on commit b856a6a

Please sign in to comment.