From 7ba060993e1b8ba9241adc3343c851773394dc95 Mon Sep 17 00:00:00 2001 From: Evan Sims Date: Mon, 13 Jan 2025 18:41:09 -0600 Subject: [PATCH] run autoflake --- openfga_sdk/client/client.py | 6 +----- openfga_sdk/sync/client/client.py | 2 +- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/openfga_sdk/client/client.py b/openfga_sdk/client/client.py index 4cfcd6b..a8e042e 100644 --- a/openfga_sdk/client/client.py +++ b/openfga_sdk/client/client.py @@ -11,12 +11,8 @@ """ import asyncio -import json import uuid -from typing import AsyncGenerator, Coroutine -from unittest import result -import aiohttp from openfga_sdk.api.open_fga_api import OpenFgaApi from openfga_sdk.api_client import ApiClient @@ -841,7 +837,7 @@ async def streamed_list_objects( :param retryParams.minWaitInMs(options) - Override the minimum wait before a retry is initiated :param consistency(options) - The type of consistency preferred for the request11 """ - kwargs = options_to_kwargs(options) + options_to_kwargs(options) store_id = self.get_store_id() diff --git a/openfga_sdk/sync/client/client.py b/openfga_sdk/sync/client/client.py index e9a22f6..354efdd 100644 --- a/openfga_sdk/sync/client/client.py +++ b/openfga_sdk/sync/client/client.py @@ -824,7 +824,7 @@ def streamed_list_objects( :param retryParams.minWaitInMs(options) - Override the minimum wait before a retry is initiated :param consistency(options) - The type of consistency preferred for the request """ - kwargs = options_to_kwargs(options) + options_to_kwargs(options) store_id = self.get_store_id()