Skip to content

Commit

Permalink
Enclose relation type with backtick
Browse files Browse the repository at this point in the history
  • Loading branch information
nanglo123 committed Oct 3, 2024
1 parent 3b3a043 commit 099b924
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mira/dkg/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")

0 comments on commit 099b924

Please sign in to comment.