fix: Return empty QuerySet instead of list

This commit is contained in:
JDC 2020-11-19 21:53:22 -05:00 committed by Nick Sweeting
parent 823df34080
commit fb67d6684c

View file

@ -51,7 +51,7 @@ def query_search_index(query: str, out_dir: Path=OUTPUT_DIR) -> QuerySet:
qsearch = Snapshot.objects.filter(pk__in=snapshot_ids) qsearch = Snapshot.objects.filter(pk__in=snapshot_ids)
return qsearch return qsearch
else: else:
return [] return Snapshot.objects.none()
@enforce_types @enforce_types
def flush_search_index(snapshots: QuerySet): def flush_search_index(snapshots: QuerySet):