From 101d540a72a805ee1c85d57d3b4290be8c8aba12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Clau=C3=9F?= Date: Tue, 8 Nov 2022 14:30:47 +0100 Subject: [PATCH] relative imports to absolute --- pytestpavement/__init__.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pytestpavement/__init__.py b/pytestpavement/__init__.py index 4f1f80c..e2e8843 100644 --- a/pytestpavement/__init__.py +++ b/pytestpavement/__init__.py @@ -1,8 +1,8 @@ # main __init__.py -from .analysis import * -from .functions import * -from .helper import * -from .io import * -from .labtests import * -from .models import * +from pytestpavement.analysis import * +from pytestpavement.functions import * +from pytestpavement.helper import * +from pytestpavement.io import * +from pytestpavement.labtests import * +from pytestpavement.models import *