Skip to content

Commit 16ad6de

Browse files
author
Jonny Johannes
committed
are there truly none
1 parent 303a3ca commit 16ad6de

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

adoption_sources/rescue_groups.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def __init__(
3333
postal_code: str = "02108", # Boston
3434
radius_miles: int = 50,
3535
species: str = "dogs", # "dogs" or "cats"
36-
limit: int = 25,
36+
limit: int = 100,
3737
location_label: str = "Boston, MA", # For display purposes
3838
):
3939
self._api_key = api_key or os.environ.get("CUTEPETSBOSTON_RESCUEGROUPS_API_KEY")
@@ -92,7 +92,6 @@ def fetch_pets(self) -> Iterator[AdoptablePet]:
9292
response.raise_for_status()
9393

9494
data = response.json().get("data", [])
95-
print(data)
9695
logger.info(f"Received {len(data)} pets from RescueGroups")
9796

9897
for animal in data:

0 commit comments

Comments
 (0)