From ee1c17f29fdc0c1f37158ed0962286ca5eb2d072 Mon Sep 17 00:00:00 2001 From: JsMelix Date: Fri, 17 Oct 2025 11:54:30 -0500 Subject: [PATCH] docs: remove fga_client.close() from README (#191) --- README.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/README.md b/README.md index 4117d62..40460f7 100644 --- a/README.md +++ b/README.md @@ -142,7 +142,6 @@ async def main(): # Enter a context with an instance of the OpenFgaClient async with OpenFgaClient(configuration) as fga_client: api_response = await fga_client.read_authorization_models() - await fga_client.close() return api_response ``` @@ -168,7 +167,6 @@ async def main(): # Enter a context with an instance of the OpenFgaClient async with OpenFgaClient(configuration) as fga_client: api_response = await fga_client.read_authorization_models() - await fga_client.close() return api_response ``` @@ -197,7 +195,6 @@ async def main(): # Enter a context with an instance of the OpenFgaClient async with OpenFgaClient(configuration) as fga_client: api_response = await fga_client.read_authorization_models() - await fga_client.close() return api_response ```