Skip to content

Commit 80347e4

Browse files
committed
Commenting print
1 parent 974d779 commit 80347e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nc2rdf/nc2rdf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def baldgraph2schemaorg(graph):
5050
currField = getBasename(str(row[0])).strip()
5151
#print(getBasename(str(row[0])) + ' (type: ' + str(type(row[0])) + ")" + " :: " + row[1] + ' (type: ' + str(type(row[1])) + ")")
5252
if(currField in mapping_idx.keys()):
53-
print('schemaorg:' + mapping_idx[currField], "\t", row[1])
53+
#print('schemaorg:' + mapping_idx[currField], "\t", row[1])
5454
predUri = URIRef("http://schema.org/" + mapping_idx[currField])
5555
lit = Literal(row[1])
5656
schema_g.add( (container, predUri, lit) )

0 commit comments

Comments
 (0)