Skip to content

Commit

Permalink
#2: Remove print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
keiranjprice101 committed Jul 22, 2019
1 parent fb0fb90 commit d9716af
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions common/models/db_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,6 @@ def to_nested_dict(self, included_relations):
dictionary[attr + "_ID"].append(entity.to_dict())
else:
for attr in dir(self):
print(included_relations.keys())
print(included_relations.values())
if attr == list(included_relations.keys())[0]:
dictionary[attr + "_ID"] = getattr(self, attr).to_nested_dict(list(included_relations.values()))

Expand Down

0 comments on commit d9716af

Please sign in to comment.