Skip to content

Commit 3e73768

Browse files
docs(readme): update example snippets (#592)
1 parent 0defa21 commit 3e73768

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ client = Finch(
3131
)
3232

3333
page = client.hris.directory.list()
34-
print(page.page)
34+
print(page.individuals)
3535
```
3636

3737
## Async usage
@@ -49,7 +49,7 @@ client = AsyncFinch(
4949

5050
async def main() -> None:
5151
page = await client.hris.directory.list()
52-
print(page.page)
52+
print(page.individuals)
5353

5454

5555
asyncio.run(main())
@@ -141,7 +141,7 @@ from finch import Finch
141141
client = Finch()
142142

143143
page = client.hris.directory.list()
144-
print(page.page)
144+
print(page.individuals)
145145
```
146146

147147
## Webhook Verification

0 commit comments

Comments
 (0)