From 099b9249c6001308554ef469a56cb308b829d372 Mon Sep 17 00:00:00 2001 From: nanglo123 Date: Thu, 3 Oct 2024 11:32:48 -0400 Subject: [PATCH] Enclose relation type with backtick --- mira/dkg/utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mira/dkg/utils.py b/mira/dkg/utils.py index f389966e..bbf9288a 100644 --- a/mira/dkg/utils.py +++ b/mira/dkg/utils.py @@ -72,7 +72,8 @@ class MiraState: ] #: A list of all relation types that are considered refinement relations -DKG_REFINER_RELS = ["rdfs:subclassof", "subclassof", "part_of"] +# Must enclose relation types with ":" with backtick (`) +DKG_REFINER_RELS = ["`rdfs:subclassof`", "subclassof", "part_of"] #: The root path of the MIRA app when running in a container DOCKER_FILES_ROOT = Path("/sw")