Skip to content

Commit 1f4c734

Browse files
authored
fix(docs): correct list_stores example in README (#21)
2 parents 6418b2c + 0bb6599 commit 1f4c734

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ Get a paginated list of stores.
220220

221221
```python
222222
options = {"page_size": 25, "continuation_token": "eyJwayI6IkxBVEVTVF9OU0NPTkZJR19hdXRoMHN0b3JlIiwic2siOiIxem1qbXF3MWZLZExTcUoyN01MdTdqTjh0cWgifQ=="}
223-
response = await fga_client.get_store(options)
223+
response = await fga_client.list_stores(options)
224224
# response = ListStoresResponse(...)
225225
# response.stores = [Store({"id": "01FQH7V8BEG3GPQW93KTRFR8JB", "name": "FGA Demo Store", "created_at": "2022-01-01T00:00:00.000Z", "updated_at": "2022-01-01T00:00:00.000Z"})]
226226
```

0 commit comments

Comments
 (0)