Skip to content

Commit 5cf8d2b

Browse files
committed
Run black
1 parent eff72d1 commit 5cf8d2b

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

tests/index/test_index_document_meilisearch.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,9 @@ def test_add_documents_raw_custom_serializer(empty_index):
119119
{"id": uuid4(), "title": "Test 2", "when": datetime.now()},
120120
]
121121
index = empty_index()
122-
response = index.add_documents_raw(documents, content_type="application/json", serializer=CustomEncoder)
122+
response = index.add_documents_raw(
123+
documents, content_type="application/json", serializer=CustomEncoder
124+
)
123125
assert isinstance(response, TaskInfo)
124126
assert response.task_uid is not None
125127
update = index.wait_for_task(response.task_uid)
@@ -175,7 +177,9 @@ def test_update_documents_raw_custom_serializer(empty_index):
175177
{"id": uuid4(), "title": "Test 2", "when": datetime.now()},
176178
]
177179
index = empty_index()
178-
response = index.update_documents_raw(documents, content_type="application/json", serializer=CustomEncoder)
180+
response = index.update_documents_raw(
181+
documents, content_type="application/json", serializer=CustomEncoder
182+
)
179183
assert isinstance(response, TaskInfo)
180184
assert response.task_uid is not None
181185
update = index.wait_for_task(response.task_uid)

0 commit comments

Comments
 (0)