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 e026039 commit 9c7d01d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/inat_vision_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ 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):
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):
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 9c7d01d

Please sign in to comment.