Skip to content

Commit 8877837

Browse files
Merge pull request #373 from knaperek/patch-1
Fix broken Contacts example in README.md
2 parents 972816f + 92848a3 commit 8877837

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ api_client = HubSpot(retry=retry)
320320

321321
```python
322322
contacts = api_client.crm.contacts.basic_api.get_page()
323-
for contact in contacts:
323+
for contact in contacts.results:
324324
print(contact.to_dict())
325325
```
326326

0 commit comments

Comments
 (0)