We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2371372 commit c7aee9eCopy full SHA for c7aee9e
src/dosdp/validator.py
@@ -213,12 +213,10 @@ def test_annotation_properties(pattern):
213
expr = parse('annotations.[*].annotationProperty')
214
used_annotations = [match for match in expr.find(pattern)]
215
216
- print(declared_annotations)
217
stat = True
218
if used_annotations:
219
for annotation_prop in used_annotations:
220
val = annotation_prop.value
221
- print(val)
222
if val not in declared_annotations:
223
warnings.warn("Annotation property '%s' didn't declared before use." % val)
224
stat = False
0 commit comments