Skip to content

Commit

Permalink
fix(docs): correct list_stores example in README (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
rhamzeh authored May 30, 2023
2 parents 6418b2c + 0bb6599 commit 1f4c734
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 @@ -220,7 +220,7 @@ Get a paginated list of stores.

```python
options = {"page_size": 25, "continuation_token": "eyJwayI6IkxBVEVTVF9OU0NPTkZJR19hdXRoMHN0b3JlIiwic2siOiIxem1qbXF3MWZLZExTcUoyN01MdTdqTjh0cWgifQ=="}
response = await fga_client.get_store(options)
response = await fga_client.list_stores(options)
# response = ListStoresResponse(...)
# 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"})]
```
Expand Down

0 comments on commit 1f4c734

Please sign in to comment.