mirror of
https://git.vectorsigma.ru/public/tubearchivist.git
synced 2026-08-04 20:29:36 +00:00
fix linter
This commit is contained in:
@@ -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"""
|
||||
|
||||
Reference in New Issue
Block a user