fix linter

This commit is contained in:
simon 2023-05-20 19:37:41 +07:00
parent 868247e6d4
commit 904d0de6aa
No known key found for this signature in database
GPG Key ID: 2C15AA5E89985DD4
1 changed files with 1 additions and 1 deletions

View File

@ -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"""