Skip to content

Commit

Permalink
chore(internal): remove some duplicated imports (#653)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] authored and stainless-bot committed Dec 13, 2024
1 parent 988f2a0 commit c446d74
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 20 deletions.
3 changes: 1 addition & 2 deletions src/lithic/resources/auth_rules/auth_rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,14 @@

from __future__ import annotations

from .v2 import (
from .v2.v2 import (
V2,
AsyncV2,
V2WithRawResponse,
AsyncV2WithRawResponse,
V2WithStreamingResponse,
AsyncV2WithStreamingResponse,
)
from .v2.v2 import V2, AsyncV2
from ..._compat import cached_property
from ..._resource import SyncAPIResource, AsyncAPIResource

Expand Down
17 changes: 8 additions & 9 deletions src/lithic/resources/financial_accounts/financial_accounts.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,6 @@
LoanTapesWithStreamingResponse,
AsyncLoanTapesWithStreamingResponse,
)
from .statements import (
Statements,
AsyncStatements,
StatementsWithRawResponse,
AsyncStatementsWithRawResponse,
StatementsWithStreamingResponse,
AsyncStatementsWithStreamingResponse,
)
from ..._resource import SyncAPIResource, AsyncAPIResource
from ..._response import to_streamed_response_wrapper, async_to_streamed_response_wrapper
from ...pagination import SyncSinglePage, AsyncSinglePage
Expand All @@ -55,7 +47,14 @@
CreditConfigurationWithStreamingResponse,
AsyncCreditConfigurationWithStreamingResponse,
)
from .statements.statements import Statements, AsyncStatements
from .statements.statements import (
Statements,
AsyncStatements,
StatementsWithRawResponse,
AsyncStatementsWithRawResponse,
StatementsWithStreamingResponse,
AsyncStatementsWithStreamingResponse,
)
from .financial_transactions import (
FinancialTransactions,
AsyncFinancialTransactions,
Expand Down
17 changes: 8 additions & 9 deletions src/lithic/resources/transactions/transactions.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,6 @@
import httpx

from ... import _legacy_response
from .events import (
Events,
AsyncEvents,
EventsWithRawResponse,
AsyncEventsWithRawResponse,
EventsWithStreamingResponse,
AsyncEventsWithStreamingResponse,
)
from ...types import (
transaction_list_params,
transaction_simulate_void_params,
Expand All @@ -36,7 +28,14 @@
from ..._resource import SyncAPIResource, AsyncAPIResource
from ..._response import to_streamed_response_wrapper, async_to_streamed_response_wrapper
from ...pagination import SyncCursorPage, AsyncCursorPage
from .events.events import Events, AsyncEvents
from .events.events import (
Events,
AsyncEvents,
EventsWithRawResponse,
AsyncEventsWithRawResponse,
EventsWithStreamingResponse,
AsyncEventsWithStreamingResponse,
)
from ..._base_client import AsyncPaginator, make_request_options
from ...types.transaction import Transaction
from .enhanced_commercial_data import (
Expand Down

0 comments on commit c446d74

Please sign in to comment.