From 4e63e29afa44065344d760c4d15c3d5b1f98766d Mon Sep 17 00:00:00 2001 From: Matthias Urban Date: Thu, 27 Aug 2020 09:13:34 +0200 Subject: [PATCH] Hotfix needed: In Master branch from os.core.utils import pretty_print causes circular import. Fixes #504 --- osp/core/utils/general.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osp/core/utils/general.py b/osp/core/utils/general.py index ad5b3568..41f901c6 100644 --- a/osp/core/utils/general.py +++ b/osp/core/utils/general.py @@ -2,7 +2,6 @@ import json import rdflib from osp.core.namespaces import cuba -from osp.core.session.session import Session def branch(cuds_object, *args, rel=None): @@ -56,6 +55,7 @@ def get_rdf_graph(session=None): Returns: rdflib.Graph: The resulting rdf Graph """ + from osp.core.session.session import Session if session is not None: if not isinstance(session, Session): raise TypeError(