final image selection tuning

This commit is contained in:
zepp 2024-07-26 06:32:31 -04:00
parent 2a8b6b9a1b
commit 6ccaf4e4cc
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ def get_image_url():
# As of now, it is not.
urls = []
for properties in image_data_list:
if properties["height"] >= 500 and properties["height"] <= 800:
if properties["height"] >= 500 and properties["height"] <= 700:
urls.append(properties["url"])
image_url = ""