From fe268b84b3b50a8b32e6eff03236f7e508cbe557 Mon Sep 17 00:00:00 2001 From: Alberto Soutullo Date: Thu, 9 Mar 2023 16:46:27 +0100 Subject: [PATCH] Fixed imports in wls main --- wls-module/src/wls.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/wls-module/src/wls.py b/wls-module/src/wls.py index 7c46e59..1c0a299 100644 --- a/wls-module/src/wls.py +++ b/wls-module/src/wls.py @@ -7,10 +7,10 @@ import time import tomllib # Project Imports -from .utils import wls_logger -from .utils import waku_messaging -from .utils import payloads -from .utils import files +from src.utils import wls_logger +from src.utils import waku_messaging +from src.utils import payloads +from src.utils import files """ Globals """ G_DEFAULT_CONFIG_FILE = 'config.json'