diff --git a/tubearchivist/home/src/index/filesystem.py b/tubearchivist/home/src/index/filesystem.py index 7594ee04..6935ff42 100644 --- a/tubearchivist/home/src/index/filesystem.py +++ b/tubearchivist/home/src/index/filesystem.py @@ -50,7 +50,7 @@ class Scanner: data = {"query": {"match_all": {}}, "_source": ["youtube_id"]} response = IndexPaginate("ta_video", data).get_results() - return set(i["youtube_id"] for i in response) + return {i["youtube_id"] for i in response} def apply(self): """apply all changes"""