Skip to content

Commit

Permalink
Fix broken Contacts example in README.md
Browse files Browse the repository at this point in the history
This fixes issue HubSpot#372
  • Loading branch information
knaperek authored Dec 19, 2024
1 parent 6572070 commit 92848a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ api_client = HubSpot(retry=retry)

```python
contacts = api_client.crm.contacts.basic_api.get_page()
for contact in contacts:
for contact in contacts.results:
print(contact.to_dict())
```

Expand Down

0 comments on commit 92848a3

Please sign in to comment.