Skip to content

Commit

Permalink
run autoflake
Browse files Browse the repository at this point in the history
  • Loading branch information
evansims committed Jan 14, 2025
1 parent 9e9f048 commit 7ba0609
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
6 changes: 1 addition & 5 deletions openfga_sdk/client/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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()

Expand Down
2 changes: 1 addition & 1 deletion openfga_sdk/sync/client/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down

0 comments on commit 7ba0609

Please sign in to comment.