From 6ccaf4e4cc77e4eabe4ac33e597e7bdd18088792 Mon Sep 17 00:00:00 2001 From: zepp Date: Fri, 26 Jul 2024 06:32:31 -0400 Subject: [PATCH] final image selection tuning --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 8103235..e97c2b4 100644 --- a/main.py +++ b/main.py @@ -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 = ""