for e in schemaExamples.allExamples():
if not e.hasHtml():
log.info("Example %s has no html" % e.key())
if not e.hasMicrodata():
log.info("Example %s has no html" % e.key())
if not e.hasRdfa():
log.info("Example %s has no html" % e.key())
if not e.hasJsonld():
log.info("Example %s has no html" % e.key())
Every log message is "no html", should i change them to no whatever it says in the if statement?
https://github.com/schemaorg/schemaorg/blob/main/SchemaExamples/example-code/batch-process.py lines 32-42:
Every log message is "no html", should i change them to no whatever it says in the if statement?