Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
sylvain-morin committed Feb 15, 2024
1 parent 9c7d01d commit 10c4bda
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/inat_vision_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,8 @@ def download_observation(self, observation_id, image_uuid):
data = json.loads(response.read())
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 len ( data["results"][0]["photos"] ) == 0 or data["results"][0]["photos"][0] is
None or data["results"][0]["photos"][0]["url"] is None or data["results"][0]["taxon"] is None or data["results"][0]["taxon"]["iconic_taxon_id"] is None):
None or data["results"][0]["photos"][0]["url"] is None
or data["results"][0]["location"] is None or data["results"][0]["taxon"] is None or data["results"][0]["taxon"]["iconic_taxon_id"] is None):
return None, None, None, None
# download the first image if it isn't already cached
if not os.path.exists(cache_path):
Expand Down

0 comments on commit 10c4bda

Please sign in to comment.