Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into chore/updates
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlougheed committed Feb 12, 2024
2 parents 618983d + 1fceab4 commit 33a0f81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bento_aggregation_service/search/dataset_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ async def run_search_on_dataset(
)

# Compute the intersection between the sets of results
results = dataset_linked_fields_results[0]
results = dataset_linked_fields_results[0] if len(dataset_linked_fields_results) > 0 else []
for r in dataset_linked_fields_results:
results.intersection_update(r)

Expand Down

0 comments on commit 33a0f81

Please sign in to comment.