From 8e480a7f53a6d13fed8c435d19f74c385bdc219e Mon Sep 17 00:00:00 2001 From: koerper Date: Fri, 16 May 2025 15:21:07 +0200 Subject: [PATCH] fix: Change direct to relative import to avoid clashes with utils.py --- chemprice/chemprice.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chemprice/chemprice.py b/chemprice/chemprice.py index 1f4c234..d5c2bc2 100644 --- a/chemprice/chemprice.py +++ b/chemprice/chemprice.py @@ -2,7 +2,7 @@ import os import sys sys.path.append(os.path.dirname(os.path.abspath(__file__))) -import utils +from . import utils class PriceCollector: