Skip to content

Commit

Permalink
removing some leftover unnecessary print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
EvanDietzMorris committed Dec 19, 2023
1 parent 5ce5311 commit 7b2d342
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion reasoner_transpiler/matching.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,6 @@ def __init__(
# this should be fixed in future versions, we could remove it, but it's safer to leave
predicates = []
for predicate in self.predicates:
print(bmt.get_descendants(space_case(predicate[8:])))
for predicate_descendant in bmt.get_descendants(space_case(predicate[8:])):
element = bmt.get_element(predicate_descendant)
if element and (element.annotations.get('canonical_predicate', False) or
Expand Down
4 changes: 2 additions & 2 deletions tests/test_qualifier_constraints.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,6 @@ def test_empty_qualifier_set():
},
}
query = get_query(qgraph)
print(query)
#for record in output:
# print(query)
# for record in output:
# assert len(record["results"]) == 0
1 change: 0 additions & 1 deletion tests/test_subclass.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,6 @@ def test_same_pinned_subclass(database):
}
query = get_query(qgraph)
output = list(database.run(query))[0]
print(output['results'])
assert len(output['results']) == 4


Expand Down

0 comments on commit 7b2d342

Please sign in to comment.