Skip to content

Commit e68d31b

Browse files
chore(internal): remove some duplicated imports (#462)
1 parent 7c02f14 commit e68d31b

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

src/orb/resources/customers/customers.py

+8-9
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,6 @@
2323
customer_update_params,
2424
customer_update_by_external_id_params,
2525
)
26-
from .credits import (
27-
Credits,
28-
AsyncCredits,
29-
CreditsWithRawResponse,
30-
AsyncCreditsWithRawResponse,
31-
CreditsWithStreamingResponse,
32-
AsyncCreditsWithStreamingResponse,
33-
)
3426
from ..._types import NOT_GIVEN, Body, Query, Headers, NoneType, NotGiven
3527
from ..._utils import (
3628
maybe_transform,
@@ -41,7 +33,14 @@
4133
from ..._response import to_streamed_response_wrapper, async_to_streamed_response_wrapper
4234
from ...pagination import SyncPage, AsyncPage
4335
from ..._base_client import AsyncPaginator, make_request_options
44-
from .credits.credits import Credits, AsyncCredits
36+
from .credits.credits import (
37+
Credits,
38+
AsyncCredits,
39+
CreditsWithRawResponse,
40+
AsyncCreditsWithRawResponse,
41+
CreditsWithStreamingResponse,
42+
AsyncCreditsWithStreamingResponse,
43+
)
4544
from ...types.customer import Customer
4645
from .balance_transactions import (
4746
BalanceTransactions,

0 commit comments

Comments
 (0)