Skip to content

Commit

Permalink
Removed print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
Rinke Hoekstra committed Feb 21, 2017
1 parent 93c086f commit cea2e72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -366,13 +366,13 @@ def prepare_sunburst(uri, results):

for r in results:
if r['s']['value'] == uri and r['o']['type'] not in ['literal','typed-literal']:
print "outgoing", r['s']['value'], r['p']['value'], r['o']['value']
# print "outgoing", r['s']['value'], r['p']['value'], r['o']['value']
outgoing.setdefault(r['p']['value'], {}).setdefault('children', {})[r['o']['value']] = {
"name": r['o']['value'],
"size": 1000
}
elif r['o']['value'] == uri:
print "incoming", r['s']['value'], r['p']['value'], r['o']['value']
# print "incoming", r['s']['value'], r['p']['value'], r['o']['value']
incoming.setdefault(r['p']['value'], {}).setdefault('children', {})[r['s']['value']] = {
"name": r['s']['value'],
"size": 1000
Expand Down

0 comments on commit cea2e72

Please sign in to comment.