You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The code in surepy/__init__.py is trying to check if the species was seen before but incorrectly checks that in self._breeds instead of self._species_breeds:
if breed["species_id"] not in self._breeds:
should be
if breed["species_id"] not in self._species_breeds:
The text was updated successfully, but these errors were encountered:
The code in surepy/__init__.py is trying to check if the species was seen before but incorrectly checks that in self._breeds instead of self._species_breeds:
should be
The text was updated successfully, but these errors were encountered: