mirror of
https://git.vectorsigma.ru/public/tubearchivist.git
synced 2026-08-04 22:59:39 +00:00
fix linter
This commit is contained in:
@@ -50,7 +50,7 @@ class Scanner:
|
|||||||
|
|
||||||
data = {"query": {"match_all": {}}, "_source": ["youtube_id"]}
|
data = {"query": {"match_all": {}}, "_source": ["youtube_id"]}
|
||||||
response = IndexPaginate("ta_video", data).get_results()
|
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):
|
def apply(self):
|
||||||
"""apply all changes"""
|
"""apply all changes"""
|
||||||
|
|||||||
Reference in New Issue
Block a user