From 8ccad9ec7f77c5c0d31e9e0fb3602cfa86dd6a7a Mon Sep 17 00:00:00 2001 From: Harshad Hegde Date: Thu, 11 Aug 2022 17:07:32 -0500 Subject: [PATCH] https://github.com/INCATools/kgcl-rdflib/issues/43 --- src/kgcl_schema/grammar/render_operations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kgcl_schema/grammar/render_operations.py b/src/kgcl_schema/grammar/render_operations.py index c5475892..ce5b9944 100644 --- a/src/kgcl_schema/grammar/render_operations.py +++ b/src/kgcl_schema/grammar/render_operations.py @@ -26,7 +26,7 @@ def render_entity(entity, rdf_type): # TODO: replacing quotes with backticks # is only a temporary workaround entity = entity.replace("'", "`") - return "'" + entity + "'" + return entity elif rdf_type == "literal": # TODO: test this if '"' not in entity: