We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents eadeccb + 6e912be commit bc55910Copy full SHA for bc55910
meilisearch_python_sdk/_http_requests.py
@@ -34,7 +34,7 @@ async def _send_request(
34
) -> Response:
35
headers = build_headers(content_type)
36
try:
37
- if not body:
+ if body is None:
38
response = await http_method(path)
39
elif content_type == "application/json":
40
response = await http_method(path, json=body, headers=headers)
0 commit comments