Skip to content

Commit f5d93a3

Browse files
committed
fix: lint
1 parent 294c69c commit f5d93a3

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

openfga_sdk/api/open_fga_api.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,9 @@
1313
from __future__ import annotations
1414

1515
from collections.abc import AsyncIterator
16-
from typing import TYPE_CHECKING, Any
16+
from typing import Any
1717

1818
from openfga_sdk.api_client import ApiClient
19-
20-
21-
if TYPE_CHECKING:
22-
from openfga_sdk.client.models.raw_response import RawResponse
2319
from openfga_sdk.exceptions import ApiValueError, FgaValidationException
2420
from openfga_sdk.oauth2 import OAuth2Client
2521
from openfga_sdk.telemetry import Telemetry

openfga_sdk/sync/open_fga_api.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,9 @@
1515
import urllib.parse
1616

1717
from collections.abc import Iterator
18-
from typing import TYPE_CHECKING, Any
18+
from typing import Any
1919

2020
from openfga_sdk.exceptions import ApiValueError, FgaValidationException
21-
22-
23-
if TYPE_CHECKING:
24-
from openfga_sdk.client.models.raw_response import RawResponse
2521
from openfga_sdk.sync.api_client import ApiClient
2622
from openfga_sdk.sync.oauth2 import OAuth2Client
2723
from openfga_sdk.telemetry import Telemetry

0 commit comments

Comments
 (0)