From 59ac01cc325de711582c782d98c4c1389e0243cf Mon Sep 17 00:00:00 2001 From: Carla Urrea Stabile <2745491+carlastabile@users.noreply.github.com> Date: Thu, 24 Jul 2025 14:05:37 +0200 Subject: [PATCH 1/2] chore: update readme import error --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f39b9bf..b72146a 100644 --- a/README.md +++ b/README.md @@ -1060,7 +1060,7 @@ List the users who have a certain relation to a particular type. ```python from openfga_sdk import OpenFgaClient from openfga_sdk.models.fga_object import FgaObject -from openfga_sdk.client.models import ClientListUsersRequest, ClientTuple +from openfga_sdk.client.models.list_users_request import ClientListUsersRequest, ClientTuple configuration = ClientConfiguration( api_url=FGA_API_URL, From 356fb5e8c6daee647301f974fc2f3548c74aa936 Mon Sep 17 00:00:00 2001 From: Carla Urrea Stabile <2745491+carlastabile@users.noreply.github.com> Date: Thu, 24 Jul 2025 15:50:30 +0200 Subject: [PATCH 2/2] fix import --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b72146a..84a6fed 100644 --- a/README.md +++ b/README.md @@ -1060,7 +1060,8 @@ List the users who have a certain relation to a particular type. ```python from openfga_sdk import OpenFgaClient from openfga_sdk.models.fga_object import FgaObject -from openfga_sdk.client.models.list_users_request import ClientListUsersRequest, ClientTuple +from openfga_sdk.client.models import ClientTuple +from openfga_sdk.client.models.list_users_request import ClientListUsersRequest configuration = ClientConfiguration( api_url=FGA_API_URL,