From dc504960f28d6555de6ab2d0208fab6d6630af0b Mon Sep 17 00:00:00 2001 From: Rafael Goncalves Date: Tue, 2 Jan 2024 15:40:41 -0500 Subject: [PATCH] Fix imports in onto_cache --- text2term/onto_cache.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/text2term/onto_cache.py b/text2term/onto_cache.py index 614f912..204dcb0 100644 --- a/text2term/onto_cache.py +++ b/text2term/onto_cache.py @@ -3,8 +3,8 @@ import text2term import owlready2 import pandas as pd -from .term import OntologyTermType -from .mapper import Mapper +from text2term.term import OntologyTermType +from text2term.mapper import Mapper from shutil import rmtree CACHE_FOLDER = "cache"