Skip to content

Commit

Permalink
Comment out some debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Dataliberate committed Apr 29, 2019
1 parent 2892d72 commit 1455acb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apirdfterm.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def __init__(self,uri,ttype=None,label='',layer=None,cat=None):
self.parent = VTerm._getTerm(str(ttype))
if VTerm.isEnumerationAncestor(self.parent):
self.ttype = VTerm.ENUMERATIONVALUE
log.info("%s is ENUMERATIONVALUE" % self.getId())
#log.info("%s is ENUMERATIONVALUE" % self.getId())
else:
self.ttype = self.parent.getType()

Expand Down Expand Up @@ -261,7 +261,7 @@ def getEquivalents(self):
if not self.equivalents:
self.equivalents = self.loadObjects("owl:equivalentClass")
self.equivalents.extend(self.loadObjects("owl:equivalentProperty"))
log.info("equivalents: %s" % self.equivalents)
#log.info("equivalents: %s" % self.equivalents)
return self.equivalents
def inLayers(self,layers):
return self.layer in layers
Expand Down Expand Up @@ -337,7 +337,7 @@ def loadSubjects(self,pred):

def loadsupers(self):
fullId = toFullId(self.id)
log.info("loadsupers(%s)" % self.id)
#log.info("loadsupers(%s)" % self.id)
query = """
SELECT ?sup WHERE {
{
Expand Down

0 comments on commit 1455acb

Please sign in to comment.