From 8817d4c13380da4e06fe9497c41a251038eaf5d4 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 12 Mar 2021 23:36:23 -0500 Subject: Fix type and range of patch:value This was obviously wrong. I'm not sure how this happened, probably a copy/paste mistake. --- wscript | 3 +++ 1 file changed, 3 insertions(+) (limited to 'wscript') diff --git a/wscript b/wscript index 6ecb0d9..37a24e8 100644 --- a/wscript +++ b/wscript @@ -686,6 +686,9 @@ def test_vocabularies(check, specs, files): # Check that all properties are either datatype or object properties for r in sorted(model.triples([None, rdf.type, rdf.Property])): subject = r[0] + if str(subject) == 'http://lv2plug.in/ns/ext/patch#value': + continue # patch:value is just a "promiscuous" rdf:Property + types = list(model.objects(subject, rdf.type)) check(lambda: ((owl.DatatypeProperty in types) or -- cgit v1.2.1