We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45d7444 commit 41c53e8Copy full SHA for 41c53e8
1 file changed
backend/database.py
@@ -48,8 +48,6 @@ def store_by_id(self, document_id: str, document_content: dict) -> Document:
48
if document:
49
document_as_dict = dict(document)
50
diff = DeepDiff(document_as_dict, document_content, ignore_order=True)
51
- print(diff.get('values_changed'))
52
- print(diff.get('affected_root_keys'))
53
if diff.get('values_changed') or \
54
diff.get('affected_root_keys') and \
55
set(diff.affected_root_keys) != {'_id', '_rev'} or \
0 commit comments