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.
1 parent fb4988d commit eb80c82Copy full SHA for eb80c82
stac_fastapi/elasticsearch/stac_fastapi/elasticsearch/database_logic.py
@@ -215,7 +215,7 @@ async def execute_search(
215
es_response = await search_task
216
217
hits = es_response["hits"]["hits"]
218
- items = [hit["_source"] for hit in hits]
+ items = (hit["_source"] for hit in hits)
219
220
next_token = None
221
if hits and (sort_array := hits[-1].get("sort")):
0 commit comments