From 3c2158e66863e9feca3fa78b6963c9cde2a57f25 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 12 Jul 2024 06:37:24 -0400 Subject: Use bare boolean literals I'm not sure why these were written out in full, although vaguely recall something about rdflib having trouble with these. In any case, it seems to work now, and this is fundamental Turtle syntax that should be supported by everything. This is necessary for the lint tests to pass after improvements to serd that will rewrite these literals in this way. --- lv2/atom.lv2/atom.ttl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lv2/atom.lv2/atom.ttl') diff --git a/lv2/atom.lv2/atom.ttl b/lv2/atom.lv2/atom.ttl index 03d3531..064d274 100644 --- a/lv2/atom.lv2/atom.ttl +++ b/lv2/atom.lv2/atom.ttl @@ -161,7 +161,7 @@ atom:Resource rdfs:subClassOf atom:Object ; rdfs:label "Resource" ; rdfs:comment "A named collection of properties with a URI." ; - owl:deprecated "true"^^xsd:boolean ; + owl:deprecated true ; atom:cType "LV2_Atom_Object" . atom:Blank @@ -169,7 +169,7 @@ atom:Blank rdfs:subClassOf atom:Object ; rdfs:label "Blank" ; rdfs:comment "An anonymous collection of properties without a URI." ; - owl:deprecated "true"^^xsd:boolean ; + owl:deprecated true ; atom:cType "LV2_Atom_Object" . atom:Sound -- cgit v1.2.1