From b856a6a8e37c8260c461a52b3b80d80b77b54654 Mon Sep 17 00:00:00 2001 From: cootshk <83678457+cootshk@users.noreply.github.com> Date: Wed, 1 Nov 2023 23:21:38 -0500 Subject: [PATCH] hopefully tests work now --- tests/test_main.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tests/test_main.py b/tests/test_main.py index eb4de6a..4f6a6ee 100644 --- a/tests/test_main.py +++ b/tests/test_main.py @@ -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