diff --git a/README.md b/README.md index 631c003..344b972 100644 --- a/README.md +++ b/README.md @@ -143,7 +143,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 ``` @@ -169,7 +168,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 ``` @@ -198,7 +196,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 ```