[7.x] [DOCS] Add missing comma in async example

This commit is contained in:
Seth Michael Larson
2021-03-18 17:07:01 -05:00
committed by GitHub
parent 4766022923
commit 8c30fa0b34
+1 -1
View File
@@ -36,7 +36,7 @@ and are used in the same way as other APIs, just with an extra ``await``:
async def main():
resp = await es.search(
index="documents",
body={"query": {"match_all": {}}}
body={"query": {"match_all": {}}},
size=20,
)
print(resp)