From ddf1bf28678732b6dee35072b29d2ea09522fdfb Mon Sep 17 00:00:00 2001 From: sylvain-morin Date: Thu, 15 Feb 2024 12:57:20 +0100 Subject: [PATCH] Test --- lib/inat_vision_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/inat_vision_api.py b/lib/inat_vision_api.py index 94cde65..48ee2d8 100644 --- a/lib/inat_vision_api.py +++ b/lib/inat_vision_api.py @@ -245,7 +245,7 @@ def download_observation(self, observation_id, image_uuid): if (data is None or data["results"] is None or len ( data["results"] ) == 0 or data["results"][0] is None or data["results"][0]["photos"] is None or data["results"][0]["photos"][0] is None or data["results"][0]["photos"][0]["url"] is None): - return None, None, None + return None, None, None, None # download the first image if it isn't already cached if not os.path.exists(cache_path): START_TIME_DOWNLOAD = time.time()