Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
situx committed Feb 14, 2024
1 parent d1e4834 commit 8c18421
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions util/export/data/exporter/rdf/vowlexporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ def convertOWL2MiniVOWL(g,outpath,outfile=None,predicates=[],typeproperty="http:
f = open(outpath + "/"+str(outfile), "w")
f.write("var minivowlresult=" + json.dumps(minivowlresult, indent=1))
f.close()
return minivowlresult

@staticmethod
def convertOWL2VOWL(g,outpath,typeproperty="http://www.w3.org/1999/02/22-rdf-syntax-ns#type",labelproperty="http://www.w3.org/2000/01/rdf-schema#label"):
Expand Down Expand Up @@ -169,3 +170,4 @@ def convertOWL2VOWL(g,outpath,typeproperty="http://www.w3.org/1999/02/22-rdf-syn
f=open(outpath+"/vowl_result.js","w")
f.write("var vowlresult="+json.dumps(vowlresult,indent=1))
f.close()
return vowlresult

0 comments on commit 8c18421

Please sign in to comment.